From cf73a126380a3c8d068c2fe052195966f4d0120c Mon Sep 17 00:00:00 2001 From: oetiker Date: Mon, 6 Apr 2009 14:14:31 +0000 Subject: [PATCH] use %lld with (long long) conversion when printing time. git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1770 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrd_dump.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/program/src/rrd_dump.c b/program/src/rrd_dump.c index b23da235..40e707bf 100644 --- a/program/src/rrd_dump.c +++ b/program/src/rrd_dump.c @@ -111,8 +111,8 @@ static int rrd_dump_opt_r( #else # error "Need strftime" #endif - fprintf(out_file, "\t%lu \n\n", - (unsigned long) rrd.live_head->last_up, somestring); + fprintf(out_file, "\t%lld \n\n", + (long long) rrd.live_head->last_up, somestring); for (i = 0; i < rrd.stat_head->ds_cnt; i++) { fprintf(out_file, "\t\n"); fprintf(out_file, "\t\t%s\n", rrd.ds_def[i].ds_nam); @@ -414,8 +414,8 @@ static int rrd_dump_opt_r( #else # error "Need strftime" #endif - fprintf(out_file, "\t\t\t ", somestring, - (int) now); + fprintf(out_file, "\t\t\t ", somestring, + (long long) now); for (iii = 0; iii < rrd.stat_head->ds_cnt; iii++) { rrd_read(rrd_file, &my_cdp, sizeof(rrd_value_t) * 1); if (isnan(my_cdp)) { -- 2.30.2