summaryrefslogtreecommitdiff
path: root/entry.c
diff options
context:
space:
mode:
Diffstat (limited to 'entry.c')
-rw-r--r--entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/entry.c b/entry.c
index 6b5e9ce..4b6d03d 100644
--- a/entry.c
+++ b/entry.c
@@ -23,7 +23,7 @@ char *get_epath(ENTRY *e);
ENTRY *create_entry(char *new_name, char *new_path){
ENTRY *new;
- //check if file exists
+ //double check if file exists
if(access(new_path, F_OK) == -1){
printf("Error: Invalid File Name \"%s\"\n", new_path);
return NULL;