aboutsummaryrefslogtreecommitdiffstats
path: root/service/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'service/src/util.c')
-rw-r--r--service/src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/src/util.c b/service/src/util.c
index 140d08b..d8b9c98 100644
--- a/service/src/util.c
+++ b/service/src/util.c
@@ -127,7 +127,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);
}