diff options
author | Aaron Ball <nullspoon@iohq.net> | 2015-02-21 18:55:58 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2015-02-21 18:55:58 -0700 |
commit | cd6fdb269097a3f552d759b9a265049708c8f732 (patch) | |
tree | e6febddff8e905f42e44a7732ff5bb9dd1b71332 /src | |
parent | 20f2681374ab8d19af760f4d2fc3ebb0c4e547ae (diff) | |
download | noteless-cd6fdb269097a3f552d759b9a265049708c8f732.tar.gz noteless-cd6fdb269097a3f552d759b9a265049708c8f732.tar.xz |
Changed get_help function to void return
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -23,7 +23,7 @@ // #include "note.h" // #include "path.h" -int get_help() { +void get_help() { char out[] = "\nNoteless provides a simple command line interface for note " "taking.\n\n" "What makes this different than simply using a command line text editor is\n" @@ -40,7 +40,6 @@ int get_help() { " help Displays this help text\n" " ls,list Lists all notes in note directory.\n"; printf("%s\n", out); - return 0; } /** |