]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
* fixed warnings
authormattn <mattn>
Thu, 26 Jun 2008 11:39:44 +0000 (11:39 +0000)
committermattn <mattn>
Thu, 26 Jun 2008 11:39:44 +0000 (11:39 +0000)
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@276 8a3a26a2-13c4-0310-b231-cf6edde360e5

libs/picomodel/lwo/lwio.c

index ec74932f4a494d539d602552464aa5bd6ba94847..083ffcdbce857a01bf2912696899796260cb1c1f 100644 (file)
@@ -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;
 }