]> git.tuebingen.mpg.de Git - dss.git/blobdiff - time.c
Make the dss log facility C89 conform.
[dss.git] / time.c
diff --git a/time.c b/time.c
index 8197478e3a4921df08300a609b16fbcec47a5364..ef99430de99383f3bd42a42034ae5fd9033a7202 100644 (file)
--- a/time.c
+++ b/time.c
@@ -142,6 +142,6 @@ int64_t get_current_time(void)
 {
        time_t now;
        time(&now);
-       DSS_DEBUG_LOG("now: %jd\n", (intmax_t)now);
+       DSS_DEBUG_LOG(("now: %jd\n", (intmax_t)now));
        return (int64_t)now;
 }