Fixed a \n 'mankantan' in the TS_SAVEFILE dump.
authorviric@llimona
Thu, 12 Apr 2007 22:45:03 +0200
changeset 122 e6d6ca823d78
parent 121 7a42c36de0d0
child 123 9d23b6db61c9
Fixed a \n 'mankantan' in the TS_SAVEFILE dump.
list.c
--- a/list.c	Tue Apr 10 23:44:19 2007 +0200
+++ b/list.c	Thu Apr 12 22:45:03 2007 +0200
@@ -147,7 +147,7 @@
     if (line == NULL)
         error("Malloc for %i failed.\n", maxlen);
 
-    sprintf(line, "ts %s", p->command);
+    sprintf(line, "ts %s\n", p->command);
 
     return line;
 }