summaryrefslogtreecommitdiff
path: root/src/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.h')
-rw-r--r--src/debug.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/debug.h b/src/debug.h
index c25aeb1..1dcf4ea 100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -41,9 +41,6 @@ static inline void debug_dump_buffer(const char *header, size_t len, const uint8
fprintf(DUMP, "\n");
}
- if (len/8 == 0)
- return;
-
for (size_t line=0; line<len/8; line++)
{
fprintf(DUMP, "%*s", indent, "");
@@ -56,8 +53,6 @@ static inline void debug_dump_buffer(const char *header, size_t len, const uint8
}
fprintf(DUMP, "\n");
}
-
- fprintf(DUMP, "\n");
}
static inline void debug_open_dump(const char *suite, const char *vector_name)