From fb2a33bb98f09325349f84f1007035e415d8175f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 10 Nov 1993 06:05:05 +0000 Subject: [PATCH] merge with 1.9 --- lib/getdate.y | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/getdate.y b/lib/getdate.y index 1d5690423..ff0aa66a3 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 */ } -- 2.11.0