From 09c2b87a0c366886fa637eef036338016cdc2088 Mon Sep 17 00:00:00 2001 From: asfernandes Date: Tue, 9 Nov 2010 15:03:33 +0000 Subject: [PATCH] Warnings --- src/dsql/make.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dsql/make.cpp b/src/dsql/make.cpp index 383970dc07..dbc4e446fc 100644 --- a/src/dsql/make.cpp +++ b/src/dsql/make.cpp @@ -161,7 +161,7 @@ dsql_nod* MAKE_constant(dsql_str* constant, dsql_constant_type numeric_flag) if (*p == 'X') { // oh no, a hex string! - *p++; // skip the 'X' part. + ++p; // skip the 'X' part. UCHAR byte = 0; bool nibble = ((strlen(constant->str_data) - 1) & 1); SSHORT c; @@ -187,7 +187,7 @@ dsql_nod* MAKE_constant(dsql_str* constant, dsql_constant_type numeric_flag) nibble = true; } - *p++; + ++p; } // if value is negative, then GEN_constant (from dsql/gen.cpp)