We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac2ee9 commit 6c333ebCopy full SHA for 6c333eb
cups/json.c
@@ -407,7 +407,7 @@ cupsJSONExportString(cups_json_t *json) // I - JSON root node
407
*ptr++ = '\\';
408
*ptr++ = 't';
409
}
410
- if ((*value & 255) < ' ')
+ else if ((*value & 255) < ' ')
411
{
412
snprintf(ptr, length - (size_t)(ptr - s), "\\u%04x", *value);
413
ptr += 6;
0 commit comments