From: oetiker Date: Mon, 29 Mar 2010 16:25:34 +0000 (+0000) Subject: use long long int instead of just long long X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bed7c2687f3756013ec5f14a628d593197a7fa68;p=rrdtool-all.git use long long int instead of just long long git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@2056 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/src/rrd_dump.c b/program/src/rrd_dump.c index 07919b79..ccc5349f 100644 --- a/program/src/rrd_dump.c +++ b/program/src/rrd_dump.c @@ -139,7 +139,7 @@ int rrd_dump_cb_r( # error "Need strftime" #endif CB_FMTS("\t%lld \n\n", - (long long) rrd.live_head->last_up, somestring); + (long long int) rrd.live_head->last_up, somestring); for (i = 0; i < rrd.stat_head->ds_cnt; i++) { CB_PUTS("\t\n"); @@ -430,7 +430,7 @@ int rrd_dump_cb_r( #else # error "Need strftime" #endif - CB_FMTS("\t\t\t ", somestring, (long long) now); + CB_FMTS("\t\t\t ", somestring, (long long int) 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)) {