mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 07:17:10 +00:00
tools/file2include: avoid incorrect comments
Avoid creating incorrect comments like /* ...*/... */ by printing '.' instead of '*' inside comments. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
4a8e72954e
commit
b14619ba62
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ int main(int argc, char *argv[])
|
||||||
printf("\\x%02x", buf[j]);
|
printf("\\x%02x", buf[j]);
|
||||||
printf("\"}, /* ");
|
printf("\"}, /* ");
|
||||||
for (j = i; j < i + BLOCK_SIZE && j < count; ++j) {
|
for (j = i; j < i + BLOCK_SIZE && j < count; ++j) {
|
||||||
if (buf[j] >= 0x20 && buf[j] <= 0x7e)
|
if (buf[j] != '*' && buf[j] >= 0x20 && buf[j] <= 0x7e)
|
||||||
printf("%c", buf[j]);
|
printf("%c", buf[j]);
|
||||||
else
|
else
|
||||||
printf(".");
|
printf(".");
|
||||||
|
|
Loading…
Add table
Reference in a new issue