summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fafaa54)
raw | patch | inline | side by side (parent: fafaa54)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Mon, 6 Apr 2009 14:14:31 +0000 (14:14 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Mon, 6 Apr 2009 14:14:31 +0000 (14:14 +0000) |
src/rrd_dump.c | patch | blob | history |
diff --git a/src/rrd_dump.c b/src/rrd_dump.c
index b23da23504567f051376afe369d22e937c01822a..40e707bf44f22a8a90472e9f1dc8011136342c54 100644 (file)
--- a/src/rrd_dump.c
+++ b/src/rrd_dump.c
#else
# error "Need strftime"
#endif
- fprintf(out_file, "\t<lastupdate>%lu</lastupdate> <!-- %s -->\n\n",
- (unsigned long) rrd.live_head->last_up, somestring);
+ fprintf(out_file, "\t<lastupdate>%lld</lastupdate> <!-- %s -->\n\n",
+ (long long) rrd.live_head->last_up, somestring);
for (i = 0; i < rrd.stat_head->ds_cnt; i++) {
fprintf(out_file, "\t<ds>\n");
fprintf(out_file, "\t\t<name>%s</name>\n", rrd.ds_def[i].ds_nam);
#else
# error "Need strftime"
#endif
- fprintf(out_file, "\t\t\t<!-- %s / %d --> <row>", somestring,
- (int) now);
+ fprintf(out_file, "\t\t\t<!-- %s / %lld --> <row>", 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)) {