summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@airbus.com>2018-12-03 08:00:53 +0100
committerKévin Le Gouguec <kevin.legouguec@airbus.com>2018-12-03 08:00:53 +0100
commit5c2e3db3b4be30bee0f2cd87361da19a9febf854 (patch)
tree47ef79fbf9848668d25750e9a28ed6eb368edc43 /src
parent03dbcc215140ae1d465242cc22e97c3df504d7d1 (diff)
downloadlilliput-ae-implem-5c2e3db3b4be30bee0f2cd87361da19a9febf854.tar.xz
Documentation de l'implémentation de référence (src/)
Diffstat (limited to 'src')
-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)