diff options
author | Joursoir <chat@joursoir.net> | 2020-10-01 21:30:15 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2020-10-01 21:30:15 +0300 |
commit | 84180756da688591de8324733d344bd14d15ddef (patch) | |
tree | 4b2483cf988d67f20894922cf73faf82632ef0b0 /handerror.c | |
parent | ae1cb7fc44d7abb7ffe47656547cfae40cacdf05 (diff) | |
download | lock-password-84180756da688591de8324733d344bd14d15ddef.tar.gz lock-password-84180756da688591de8324733d344bd14d15ddef.tar.bz2 lock-password-84180756da688591de8324733d344bd14d15ddef.zip |
a little bit chore
Diffstat (limited to 'handerror.c')
-rw-r--r-- | handerror.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/handerror.c b/handerror.c index 482b467..753e834 100644 --- a/handerror.c +++ b/handerror.c @@ -1,13 +1,13 @@ #include <stdio.h> #include <stdlib.h> -void call_error(int num) +void callError(int num) { - fprintf(stderr, "Sorry, there was an error in the program [#%d]\n", num); + fprintf(stderr, "lpass: Sorry, there was an error in the program [#%d]\n", num); exit(3); } -void print_error(char *text) +void printError(char *text) { fprintf(stderr, "%s", text); exit(4); |