summaryrefslogtreecommitdiff
path: root/src/note_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/note_list.c')
-rw-r--r--src/note_list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/note_list.c b/src/note_list.c
index f043866..aa29eb2 100644
--- a/src/note_list.c
+++ b/src/note_list.c
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
+ * Copyright (C) 2021 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -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

Generated by cgit