mirror of
https://github.com/yarrick/iodine.git
synced 2024-12-26 01:27:47 +00:00
Add notreached comments
This commit is contained in:
parent
2df8875fcb
commit
5ebc9ee668
@ -465,12 +465,14 @@ main(int argc, char **argv)
|
||||
switch(choice) {
|
||||
case 'v':
|
||||
version();
|
||||
/* NOTREACHED */
|
||||
break;
|
||||
case 'f':
|
||||
foreground = 1;
|
||||
break;
|
||||
case 'h':
|
||||
help();
|
||||
/* NOTREACHED */
|
||||
break;
|
||||
case 'u':
|
||||
username = optarg;
|
||||
@ -503,6 +505,7 @@ main(int argc, char **argv)
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
/* NOTREACHED */
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user