From: Rich Felker Date: Fri, 2 Mar 2012 05:24:49 +0000 (-0500) Subject: remove debug cruft that was left in getdate X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=6cf51fe51ab48d66e917a2c99c0b40adb089268e;ds=sidebyside remove debug cruft that was left in getdate --- diff --git a/src/time/getdate.c b/src/time/getdate.c index 26a48978..8ed650a4 100644 --- a/src/time/getdate.c +++ b/src/time/getdate.c @@ -31,8 +31,6 @@ struct tm *getdate(const char *s) while (fgets(fmt, sizeof fmt, f)) { p = strptime(s, fmt, &tmbuf); -dprintf(2, "%s %s\n", s, fmt); -dprintf(2, "%p %d\n", p, p?*p:0); if (p && !*p) { ret = &tmbuf; goto out;