From: mattn Date: Thu, 26 Jun 2008 11:39:44 +0000 (+0000) Subject: * fixed warnings X-Git-Tag: xonotic-v0.7.0~16^2~12^2~98 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=commitdiff_plain;h=2aa43067fb9bee3dcc515c852050cbfae5702de5;ds=sidebyside * fixed warnings git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@276 8a3a26a2-13c4-0310-b231-cf6edde360e5 --- diff --git a/libs/picomodel/lwo/lwio.c b/libs/picomodel/lwo/lwio.c index ec74932f..083ffcdb 100644 --- a/libs/picomodel/lwo/lwio.c +++ b/libs/picomodel/lwo/lwio.c @@ -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; }