diff options
Diffstat (limited to 'src/tdo.c')
| -rw-r--r-- | src/tdo.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,7 +8,8 @@ void print_version() { void new_tdo(int argc, char** argv) { printf("New todo: "); // just in case not using quotes - for (int i=2; i<argc; ++i) printf("%s ",argv[i]); + for (int i=2; i<argc; ++i) + printf("%s ",argv[i]); printf("\n"); } |
