From: Jim Meyering Date: Tue, 13 Feb 1996 05:28:38 +0000 (+0000) Subject: Be careful to always return something. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96d1a464b72f0e9851984f901eaf2c456c5561fd;p=pspp Be careful to always return something. --- diff --git a/lib/canon-host.c b/lib/canon-host.c index 83b2cb9ad3..f302f5736c 100644 --- a/lib/canon-host.c +++ b/lib/canon-host.c @@ -72,8 +72,6 @@ canon_host (host) if (he) return (char *) (he->h_name); } - -#else /* ! HAVE_GETHOSTBYNAME */ - return 0; #endif /* HAVE_GETHOSTBYNAME */ + return 0; }