summaryrefslogtreecommitdiff
path: root/lib/getdate.y
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-11-10 06:05:02 +0000
committerJim Meyering <jim@meyering.net>1993-11-10 06:05:02 +0000
commit39fd5971dd6fcb6e93db4e33cfa6bedbc4dd8610 (patch)
tree5b851d4ed5e1df60ec9a5d916dfd973a950007c6 /lib/getdate.y
parenta1b9bc9a4273dde28bbef4e24a9e0e8aea7d3a81 (diff)
downloadcoreutils-39fd5971dd6fcb6e93db4e33cfa6bedbc4dd8610.tar.xz
merge with 1.9
Diffstat (limited to 'lib/getdate.y')
-rw-r--r--lib/getdate.y2
1 files changed, 2 insertions, 0 deletions
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 */
}