diff options
author | Aaron Ball <nullspoon@iohq.net> | 2015-02-28 11:30:57 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2015-02-28 11:30:57 -0700 |
commit | 465601bb1185d8b2e90aa0fb8407c4583aed4454 (patch) | |
tree | f7f568fdb572c55516cf22bd1defbd451240a696 | |
parent | 12c42ccac47f701c35c2367adbcd2875dd77b0b9 (diff) | |
download | noteless-465601bb1185d8b2e90aa0fb8407c4583aed4454.tar.gz noteless-465601bb1185d8b2e90aa0fb8407c4583aed4454.tar.xz |
Just removed additional newline on note search
Nothing to see here. Move along... move along...
-rw-r--r-- | src/note.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ int note_search(note_t* note, char* term, int case_insensitive) { int line_num = 0; while((fgets(buf, file_width, f)) != NULL) { if(str_contains(buf, term, case_insensitive) == 1) { - printf("%s: %02d: %s\n", note->name, line_num, buf); + printf("%s: %02d: %s", note->name, line_num, buf); } line_num++; } |