summaryrefslogtreecommitdiff
path: root/src/time
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-02 00:24:49 -0500
committerRich Felker <dalias@aerifal.cx>2012-03-02 00:24:49 -0500
commit6cf51fe51ab48d66e917a2c99c0b40adb089268e (patch)
treeee9424de1277ac7d95b2e2ffbc2cd3aa79976d58 /src/time
parentb93b7382d6db5efe51134db2eba1bcbe967d1c82 (diff)
downloadmusl-6cf51fe51ab48d66e917a2c99c0b40adb089268e.tar.gz
remove debug cruft that was left in getdate
Diffstat (limited to 'src/time')
-rw-r--r--src/time/getdate.c2
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;