mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 20:21:26 +00:00
- DUMB warning fix.
SVN r4118 (trunk)
This commit is contained in:
parent
45e9491eca
commit
d1201bb9d1
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ static DUMBFILE_SYSTEM mem_dfs = {
|
|||
|
||||
static int it_seek(dumbfile_mem_status * s, int32 offset)
|
||||
{
|
||||
if ( offset > s->size )
|
||||
if ( (unsigned)offset > s->size )
|
||||
return -1;
|
||||
|
||||
s->offset = offset;
|
||||
|
|
Loading…
Reference in a new issue