From: Jim Meyering Date: Wed, 10 Nov 1993 06:01:10 +0000 (+0000) Subject: GNU shell utilities X-Git-Tag: SHELLUTILS-1_9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd4977bb707cddb3d5e10d8a162783cdb90e6a3f;p=thirdparty%2Fgnulib.git GNU shell utilities --- diff --git a/lib/getdate.y b/lib/getdate.y index 1d56904238..ff0aa66a3d 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -627,6 +627,8 @@ ToSeconds(Hours, Minutes, Seconds, Meridian) if (Hours < 1 || Hours > 12) return -1; return ((Hours + 12) * 60L + Minutes) * 60L + Seconds; + default: + abort (); } /* NOTREACHED */ }