use C99-compliant format strings for consistency reasons
[dss.git] / time.c
diff --git a/time.c b/time.c
index 6c8169f4a62c8174695598bd6c07bf756cd1b917..41db7bf5cf43e7988ac096c8ca9170ec947e61a8 100644 (file)
--- a/time.c
+++ b/time.c
@@ -141,6 +141,6 @@ int64_t get_current_time(void)
 {
        time_t now;
        time(&now);
-       DSS_DEBUG_LOG("now: %lli\n", (long long) now);
+       DSS_DEBUG_LOG("now: %jd\n", (intmax_t)now);
        return (int64_t)now;
 }