]> git.tuebingen.mpg.de Git - dss.git/blobdiff - time.c
Implement --reload.
[dss.git] / time.c
diff --git a/time.c b/time.c
index 6c8169f4a62c8174695598bd6c07bf756cd1b917..3cc1ad64ac943422b30df8a8532f629cbcc63c2d 100644 (file)
--- a/time.c
+++ b/time.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005-2008 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2005-2010 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -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;
 }