silent makefiles

This commit is contained in:
Markus Fröschle
2016-10-23 09:28:50 +00:00
parent e63a2a7a07
commit 3a2c3377e8
8 changed files with 101 additions and 67 deletions

View File

@@ -72,7 +72,7 @@ void hexdump(uint8_t buffer[], int size)
while (bp < buffer + size) {
uint8_t *lbp = bp;
printf("%08lx ", (uintptr_t) buffer + line);
printf("%08lx ", (long) buffer + line);
for (i = 0; i < 16; i++) {
if (bp + i > buffer + size) {