GNU shell utilities SHELLUTILS-1_9
authorJim Meyering <jim@meyering.net>
Wed, 10 Nov 1993 06:01:10 +0000 (06:01 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 10 Nov 1993 06:01:10 +0000 (06:01 +0000)
lib/getdate.y

index 1d56904..ff0aa66 100644 (file)
@@ -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 */
 }