ソースを参照

Fix small mistake on sqlexer.cpp

appetizermaker 9 年 前
コミット
ed23d140df
1 ファイル変更1 行追加1 行削除
  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));