summaryrefslogtreecommitdiff
path: root/replay.c
diff options
context:
space:
mode:
Diffstat (limited to 'replay.c')
-rw-r--r--replay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/replay.c b/replay.c
index b0b4b26..410463b 100644
--- a/replay.c
+++ b/replay.c
@@ -273,7 +273,7 @@ int writereplayline(char *str, char *basedir) {
debugprint("Complete replay log string to write: '%s', length '%ld'.\n", line, strlen(line));
// Write complete line to file
- if ((bytes = fprintf(fp, line)) < 0) {
+ if ((bytes = fprintf(fp, "%s", line)) < 0) {
printf("error: could not write to replay log file.\n");
exit(1);
}