From: Bruce Momjian Date: Sat, 6 Nov 2004 05:20:41 +0000 (+0000) Subject: Variable initializer no longer necessary. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=8fb41c51fdfc16047d4ad4b8fbc0157db2a33a0d;p=users%2Fbernd%2Fpostgres.git Variable initializer no longer necessary. --- diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index e82a649659..85f0316b0a 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -1539,7 +1539,7 @@ do_shell(const char *command) if (!command) { char *sys; - const char *shellName = NULL; + const char *shellName; shellName = getenv("SHELL"); #ifdef WIN32