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:
Charl Wentzel
2017-08-23 18:03:11 +02:00
parent 5f5e89e7cd
commit 4af8f529c9
3 changed files with 8 additions and 8 deletions

View File

@@ -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++;