aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index ce22c4e..8bd8448 100644
--- a/src/util.c
+++ b/src/util.c
@@ -133,7 +133,7 @@ dump(const char *filename)
if (!(f = fopen(filename, "r"))) return;
while ((nb = fread(buf, 1, sizeof(buf) - 1, f)))
- printf("%.*s\n", nb, buf);
+ printf("%.*s", nb, buf);
fclose(f);
}