From 96d1a464b72f0e9851984f901eaf2c456c5561fd Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 13 Feb 1996 05:28:38 +0000 Subject: [PATCH] Be careful to always return something. --- lib/canon-host.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; } -- 2.30.2