Skip to content

Commit

Permalink
try to move around files
Browse files Browse the repository at this point in the history
  • Loading branch information
fearful-symmetry committed Sep 24, 2024
1 parent 7dce409 commit 9b110c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion non-GPL/Events/EventsTrace/EventsTrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ static void out_escaped_string(const char *value)
// \x is not a valid escape character in json,
// and something like '\xff' will break a remarkable number of JSON parsers.
// we have to print as '0xff'
printf("x%02x", (uint8_t)c);
printf("0x%02x", (uint8_t)c);
else
printf("%c", c);
}
Expand Down

0 comments on commit 9b110c6

Please sign in to comment.