summaryrefslogtreecommitdiff
path: root/src/notes.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-12-11 08:09:30 +0100
committerBardur Arantsson <bardur@scientician.net>2015-12-11 08:09:30 +0100
commitf43e845258dda28106567b7c86f66d26d93bf0b7 (patch)
treee8ed2e2fde34a272f2c09f521e14a380f8fdfd1a /src/notes.cc
parent64d76c03e5074d6e3abf2781c3e82545b4c52b73 (diff)
Remove one-use my_fputs()
Diffstat (limited to 'src/notes.cc')
-rw-r--r--src/notes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notes.cc b/src/notes.cc
index 26960073..de9b7558 100644
--- a/src/notes.cc
+++ b/src/notes.cc
@@ -70,7 +70,7 @@ void output_note(char *final_note)
if (!fff) return;
/* Add note, and close note file */
- my_fputs(fff, final_note, 0);
+ fprintf(fff, "%s\n", final_note);
/* Close the handle */
my_fclose(fff);