mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-10 06:31:41 +00:00
* fixed warnings
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@276 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
c0f477bd04
commit
2aa43067fb
1 changed files with 2 additions and 2 deletions
|
@ -311,7 +311,7 @@ int sgetI1( unsigned char **bp )
|
|||
i = **bp;
|
||||
if ( i > 127 ) i -= 256;
|
||||
flen += 1;
|
||||
*bp++;
|
||||
(*bp)++;
|
||||
return i;
|
||||
}
|
||||
|
||||
|
@ -349,7 +349,7 @@ unsigned char sgetU1( unsigned char **bp )
|
|||
if ( flen == FLEN_ERROR ) return 0;
|
||||
c = **bp;
|
||||
flen += 1;
|
||||
*bp++;
|
||||
(*bp)++;
|
||||
return c;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue