diff options
Diffstat (limited to 'src/note_list.c')
-rw-r--r-- | src/note_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/note_list.c b/src/note_list.c index f043866..61a303c 100644 --- a/src/note_list.c +++ b/src/note_list.c @@ -50,7 +50,7 @@ void note_list_free(note_list* list) { note* note_list_read(note_list* list) { struct dirent* de; - char fullpath[256]; + char fullpath[512]; char fext[64]; // Iterrate over dir entities @@ -146,7 +146,7 @@ int note_list_edit(note_list* list, char* editor, char* term) { */ int note_list_create_note(note_list* list, char* editor, char* name) { char fullname[128]; - char fullpath[256]; + char fullpath[512]; note* n; // Create full file name |