Parcourir la Source

Fix small mistake on sqlexer.cpp

appetizermaker il y a 9 ans
Parent
commit
ed23d140df
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      squirrel/sqlexer.cpp

+ 1 - 1
squirrel/sqlexer.cpp

@@ -389,7 +389,7 @@ SQInteger SQLexer::ReadString(SQInteger ndelim,bool verbatim)
 #if WCHAR_SIZE == 2
                         AddUTF16(scstrtoul(temp, &stemp, 16));
 #else
-                        ADD_CHAR((SQChar)scstrtoul(temp, &stemp, 16));
+                        APPEND_CHAR((SQChar)scstrtoul(temp, &stemp, 16));
 #endif
 #else
                         AddUTF8(scstrtoul(temp, &stemp, 16));