mirror of
https://github.com/dgibson/dtc.git
synced 2025-12-06 21:25:05 -05:00
Merge bac9d17dbc into e1284ee5dc
This commit is contained in:
commit
f6a1c769a7
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ static void write_propval_string(FILE *f, const char *s, size_t len)
|
|||
if (isprint((unsigned char)c))
|
||||
fprintf(f, "%c", c);
|
||||
else
|
||||
fprintf(f, "\\x%02"PRIx8, c);
|
||||
fprintf(f, "\\x%02"PRIx8, (unsigned char)c);
|
||||
}
|
||||
}
|
||||
fprintf(f, "\"");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue