Skip to content

Commit

Permalink
Fix another warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
supurloop committed Oct 27, 2022
1 parent 6e13085 commit eeb1b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _codec/ssfjson.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ bool SSFJsonPrintCString(SSFCStrOut_t js, size_t size, size_t start, size_t *end
js[start] = 'u'; start++;
js[start] = '0'; start++;
js[start] = '0'; start++;
snprintf(&js[start], 2, "%02X", (uint8_t)*in);
SSF_ASSERT(SSFHexBinToByte(*in, &js[start], 2, SSF_HEX_CASE_UPPER));
start++;
}
if (*in == 0)
Expand Down

0 comments on commit eeb1b3e

Please sign in to comment.