ref: 8725d3f744980d3c1998a2fb7bbddb8daf640842
parent: f646f6bb23a5a5c66c0ea91885aacef841f7f7ab
author: Roberto E. Vargas Caballero <[email protected]>
date: Sun Jul 19 05:41:06 EDT 2015
Print strings with uppercase hexadecimal numbers
--- a/cc1/code.c
+++ b/cc1/code.c
@@ -185,7 +185,7 @@
} else {
putchar('"');
for (bp = sym->u.s; c = *bp; ++bp)
- printf("%02x", (unsigned) c);
+ printf("%02X", (unsigned) c);
}
}