From: Wayne Davison Date: Tue, 21 Nov 2006 08:37:28 +0000 (+0000) Subject: Don't set an "rc" var that we aren't going to use. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/65e83e097c8635856816a07bab5e330a6615dfc1 Don't set an "rc" var that we aren't going to use. --- diff --git a/popt/popt.c b/popt/popt.c index 00a60270..756ddfee 100644 --- a/popt/popt.c +++ b/popt/popt.c @@ -471,7 +471,7 @@ if (_popt_debug) } #endif - rc = execvp(argv[0], (char *const *)argv); + execvp(argv[0], (char *const *)argv); return POPT_ERROR_ERRNO; }