X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=time.c;h=0ad974bcac6c8fdf31363e2ad95e4c270e4a5d97;hb=2be48c0ac582aca639003528eeae2250af42471b;hp=6c8169f4a62c8174695598bd6c07bf756cd1b917;hpb=00e72666c12061e55c020a706448fac5497ce940;p=dss.git diff --git a/time.c b/time.c index 6c8169f..0ad974b 100644 --- a/time.c +++ b/time.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2008 Andre Noll + * Copyright (C) 2005-2009 Andre Noll * * 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; }