diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -369,7 +369,7 @@ static void asdfapi_hexdump(const char *data, const size_t size) { if (size < width) { width = size; } - for (size_t b = 0, col = 0; b < 16; b++) { + for (size_t b = 0, col = 0; b < size; b++) { char ch = data[b]; if (!col) { // Record the starting address |