From: Heinrich Schuchardt <xypron.glpk@gmx.de>
Date: Mon, 7 May 2018 21:00:22 +0000 (+0200)
Subject: tools/file2include: avoid incorrect comments
X-Git-Tag: v2025.01-rc5-pxa1908~4313
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/gitweb.css?a=commitdiff_plain;h=b14619ba62dd55f581784f3e7d6416c92d831258;p=u-boot.git

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>
---

diff --git a/tools/file2include.c b/tools/file2include.c
index e602f937f1..b98af30a72 100644
--- a/tools/file2include.c
+++ b/tools/file2include.c
@@ -84,7 +84,7 @@ int main(int argc, char *argv[])
 			printf("\\x%02x", buf[j]);
 		printf("\"}, /* ");
 		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]);
 			else
 				printf(".");