From 65e83e097c8635856816a07bab5e330a6615dfc1 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 21 Nov 2006 08:37:28 +0000 Subject: [PATCH] Don't set an "rc" var that we aren't going to use. --- popt/popt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1