From: Lyndon Nerenberg Date: Sun, 30 Jun 2013 23:58:23 +0000 (-0700) Subject: Remove spurious return statements after exit(). X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/daae5d9eca2f903e7435a369aeb391452b6f3886?ds=inline;hp=-c Remove spurious return statements after exit(). These are holdovers from a long forgotten era. --- daae5d9eca2f903e7435a369aeb391452b6f3886 diff --git a/uip/rcvtty.c b/uip/rcvtty.c index e9163ba7..6282d522 100644 --- a/uip/rcvtty.c +++ b/uip/rcvtty.c @@ -167,7 +167,6 @@ main (int argc, char **argv) #endif /* HAVE_GETUTXENT */ exit (RCV_MOK); - return 0; /* dead code to satisfy the compiler */ } @@ -236,7 +235,6 @@ message_fd (char **vec) setpgid ((pid_t) 0, getpid ()); /* put in own process group */ execvp (vec[0], vec); _exit (-1); - return 1; /* dead code to satisfy compiler */ }