Fix small mistake on sqlexer.cpp
This commit is contained in:
parent
8fb371b3fc
commit
ed23d140df
@ -389,7 +389,7 @@ SQInteger SQLexer::ReadString(SQInteger ndelim,bool verbatim)
|
|||||||
#if WCHAR_SIZE == 2
|
#if WCHAR_SIZE == 2
|
||||||
AddUTF16(scstrtoul(temp, &stemp, 16));
|
AddUTF16(scstrtoul(temp, &stemp, 16));
|
||||||
#else
|
#else
|
||||||
ADD_CHAR((SQChar)scstrtoul(temp, &stemp, 16));
|
APPEND_CHAR((SQChar)scstrtoul(temp, &stemp, 16));
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
AddUTF8(scstrtoul(temp, &stemp, 16));
|
AddUTF8(scstrtoul(temp, &stemp, 16));
|
||||||
|
Loading…
Reference in New Issue
Block a user