From: Jim Meyering Date: Wed, 10 Nov 1993 06:05:05 +0000 (+0000) Subject: merge with 1.9 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb2a33bb98f09325349f84f1007035e415d8175f;p=pspp merge with 1.9 --- 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 */ }