aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <industrial.reformer@gmail.com>2024-04-12 22:19:50 -0400
committerIan Moffett <industrial.reformer@gmail.com>2024-04-12 22:19:50 -0400
commit8e42c8522ce2518ed36db5c656b152195ed1ddbe (patch)
treea03290abaa73d7ac3a9807838d85ae1bb64694a7
parent7c2a57616adad4d5600018af44a438c7659aa086 (diff)
Remove confusing comment
Signed-off-by: Ian Moffett <industrial.reformer@gmail.com>
-rw-r--r--src/mex.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mex.c b/src/mex.c
index 3b69268..5472009 100644
--- a/src/mex.c
+++ b/src/mex.c
@@ -12,7 +12,6 @@ dump_line(const char *line, size_t len)
const uint8_t BYTE_COUNT = 2;
for (size_t i = 0; i < LINE_LEN; ++i) {
- /* Add padding if needed */
if (i < len) {
printf("%02X", line[i] & 0xFF);
} else {