mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-24 09:57:39 -03:00
start error codes from 101 not 100 and expect no one relied on them yet
This commit is contained in:
parent
f171063cb0
commit
37a1506b18
1 changed files with 6 additions and 6 deletions
12
main.c
12
main.c
|
@ -427,12 +427,12 @@ static void printhelp(FILE *out,const char *progname)
|
|||
}
|
||||
|
||||
enum {
|
||||
Q_ADDITIONAL = 100,
|
||||
Q_UNRECOGNISED = 101,
|
||||
Q_NOSTATISTICS = 102,
|
||||
Q_FAILOPENOUTPUT = 103,
|
||||
Q_FAILTHREAD = 104,
|
||||
Q_FAILTIME = 105,
|
||||
Q_ADDITIONAL = 101,
|
||||
Q_UNRECOGNISED,
|
||||
Q_NOSTATISTICS,
|
||||
Q_FAILOPENOUTPUT,
|
||||
Q_FAILTHREAD,
|
||||
Q_FAILTIME,
|
||||
} ;
|
||||
|
||||
static void e_additional()
|
||||
|
|
Loading…
Add table
Reference in a new issue