aboutsummaryrefslogtreecommitdiff
path: root/src/tdo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tdo.c')
-rw-r--r--src/tdo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tdo.c b/src/tdo.c
index 7b3ff0e..9596067 100644
--- a/src/tdo.c
+++ b/src/tdo.c
@@ -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");
}