Minor Update:
- DateTimeCore: - Change default separators for date/time, allow no separators - JSONparseCore: - Bug fix: Output escape sequences in Hexadecimal
This commit is contained in:
@@ -769,7 +769,7 @@ bool CJSONparse::PrintString( char * String, int Len )
|
||||
case '\\': write( OutputHandle, "\\\\", 2 ); break;
|
||||
case '"': write( OutputHandle, "\\\"", 2 ); break;
|
||||
default:
|
||||
dprintf( OutputHandle, "\\u%04d", *BufPos );
|
||||
dprintf( OutputHandle, "\\u%04X", (unsigned char)*BufPos );
|
||||
break;
|
||||
}
|
||||
BufPos++;
|
||||
|
||||
Reference in New Issue
Block a user