diff options
author | Gunter Knauf <gk@gknw.de> | 2004-07-04 15:27:08 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2004-07-04 15:27:08 +0000 |
commit | efb1fdbec8eff848a5f18cadc066558eee01afad (patch) | |
tree | 3e0cb88daa67e1cbf346a56d343d9928dc779adb | |
parent | bada8cc259be1124f57cd6c36fd3372083e37468 (diff) |
removed abort() - sync'd with getdate.y 1.26
-rw-r--r-- | lib/getdate.c.cvs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getdate.c.cvs b/lib/getdate.c.cvs index 1e7d97727..d08bf4fc4 100644 --- a/lib/getdate.c.cvs +++ b/lib/getdate.c.cvs @@ -1756,7 +1756,7 @@ ToHour (Hours, Meridian) Hours = 0; return Hours + 12; default: - abort (); + break; /* used to do abort() here */ } /* NOTREACHED - but make gcc happy! */ return -1; |