1
0
mirror of https://github.com/yarrick/iodine.git synced 2024-11-22 21:16:07 +03:00

Add notreached comments

This commit is contained in:
Erik Ekman 2007-12-01 19:46:22 +00:00
parent f47c750c98
commit 509f445c1e

View File

@ -637,12 +637,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;