silent makefiles

This commit is contained in:
Markus Fröschle
2016-10-23 09:28:50 +00:00
parent 8d9dd78e26
commit 76f55ce390
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) {