diff options
author | Roy Marples <roy@marples.name> | 2008-01-22 11:07:39 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-22 11:07:39 +0000 |
commit | 649a71055294e9fa275ebb406361cf46c843cade (patch) | |
tree | 273005e044ce31f28f187b4abbabf78f35b53d1b /src/rc/rc-status.c | |
parent | b4bff9ce5efce83a7265a42d4372d367ca32f696 (diff) |
Quiet some more lint warnings.
Diffstat (limited to 'src/rc/rc-status.c')
-rw-r--r-- | src/rc/rc-status.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rc/rc-status.c b/src/rc/rc-status.c index 445e6e72..92822483 100644 --- a/src/rc/rc-status.c +++ b/src/rc/rc-status.c @@ -132,12 +132,14 @@ int rc_status (int argc, char **argv) printf ("%s\n", level); rc_strlist_free (levels); exit (EXIT_SUCCESS); + /* NOTREACHED */ case 's': services = rc_services_in_runlevel (NULL); STRLIST_FOREACH (services, service, i) print_service (service); rc_strlist_free (services); exit (EXIT_SUCCESS); + /* NOTREACHED */ case 'u': services = rc_services_in_runlevel (NULL); levels = rc_runlevel_list (); @@ -154,6 +156,7 @@ int rc_status (int argc, char **argv) rc_strlist_free (levels); rc_strlist_free (services); exit (EXIT_SUCCESS); + /* NOTREACHED */ case_RC_COMMON_GETOPT } @@ -193,5 +196,6 @@ int rc_status (int argc, char **argv) rc_strlist_free (levels); rc_deptree_free (deptree); - return (EXIT_SUCCESS); + exit (EXIT_SUCCESS); + /* NOTREACHED */ } |