aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sc_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sc_parse.c b/src/sc_parse.c
index 659f0a3..4329337 100644
--- a/src/sc_parse.c
+++ b/src/sc_parse.c
@@ -321,7 +321,7 @@ void save_sc_block(FILE *fh, const SCBlock *bl)
fprintf(stderr, "Failed to serialise block\n");
return;
}
- fprintf(fh, a);
+ fputs(a, fh);
free(a);
bl = bl->next;
}