diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-02 00:24:49 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-02 00:24:49 -0500 |
commit | 6cf51fe51ab48d66e917a2c99c0b40adb089268e (patch) | |
tree | ee9424de1277ac7d95b2e2ffbc2cd3aa79976d58 /src | |
parent | b93b7382d6db5efe51134db2eba1bcbe967d1c82 (diff) | |
download | musl-6cf51fe51ab48d66e917a2c99c0b40adb089268e.tar.gz |
remove debug cruft that was left in getdate
Diffstat (limited to 'src')
-rw-r--r-- | src/time/getdate.c | 2 |
1 files changed, 0 insertions, 2 deletions
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; |