From 8e42c8522ce2518ed36db5c656b152195ed1ddbe Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 12 Apr 2024 22:19:50 -0400 Subject: Remove confusing comment Signed-off-by: Ian Moffett --- src/mex.c | 1 - 1 file changed, 1 deletion(-) 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 { -- cgit v1.2.3