diff options
author | Ian Moffett <industrial.reformer@gmail.com> | 2024-04-12 20:26:10 -0400 |
---|---|---|
committer | Ian Moffett <industrial.reformer@gmail.com> | 2024-04-12 20:26:10 -0400 |
commit | 7b64f72af9422ad5030307a02041f9ed6be060b1 (patch) | |
tree | 2ec0844e4e9796ac6ce03bb06ab0d8b937a62724 | |
parent | cbd974f40ecc75a8573d27e890ee34c060372416 (diff) |
Fix offsetting
Signed-off-by: Ian Moffett <industrial.reformer@gmail.com>
-rw-r--r-- | src/mex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ dump_file(FILE *fp) } printf("%08X: ", offset); - offset += LINE_LEN*2; + offset += LINE_LEN; dump_line(buf, count); } |