summaryrefslogtreecommitdiffstats
path: root/app/report.c
diff options
context:
space:
mode:
authorroot <root@ka-ata-killa.ourano.james.local>2021-03-19 11:40:34 +0000
committerroot <root@ka-ata-killa.ourano.james.local>2021-03-19 11:43:23 +0000
commitf8e862f3b5e69de90d6bf20c2642271d324b4fc3 (patch)
tree86b1ed884110e6a85d64608ceaa2f95434957d1f /app/report.c
parentc6dc3064e7ebf1f13826487105f748745434da4d (diff)
downloadclock-f8e862f3b5e69de90d6bf20c2642271d324b4fc3.tar.gz
clock-f8e862f3b5e69de90d6bf20c2642271d324b4fc3.tar.bz2
clock-f8e862f3b5e69de90d6bf20c2642271d324b4fc3.zip
switch to lwip-2.1.2
Diffstat (limited to 'app/report.c')
-rw-r--r--app/report.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/report.c b/app/report.c
index f6c84d9..8d2f342 100644
--- a/app/report.c
+++ b/app/report.c
@@ -3,6 +3,7 @@
void report_time (const char *src, EPOCH e, uint64_t abs, const char *info)
{
+#ifdef CHATTY_REPORT
printf ("RT %s %08x%08x %08x%08x %s\r\n",
src,
(unsigned) (abs >> 32),
@@ -10,6 +11,7 @@ void report_time (const char *src, EPOCH e, uint64_t abs, const char *info)
(unsigned) (e.s >> 32),
(unsigned) (e.s & 0xffffffff),
info);
+#endif
}