get rid of a few type cast warnings
[rrdtool.git] / src / rrd_dump.c
index 6343e1d..7a904f3 100644 (file)
@@ -113,8 +113,8 @@ int rrd_dump_r(
 #else
 # error "Need strftime"
 #endif
-    fprintf(out_file, "\t<lastupdate> %ld </lastupdate> <!-- %s -->\n\n",
-            rrd.live_head->last_up, somestring);
+    fprintf(out_file, "\t<lastupdate> %lu </lastupdate> <!-- %s -->\n\n",
+            (unsigned 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);
@@ -200,7 +200,8 @@ int rrd_dump_r(
             if (atoi(rrd.stat_head->version) >= 4) {
                 fprintf(out_file,
                         "\t\t<smoothing_window> %0.10e </smoothing_window>\n",
-                        rrd.rra_def[i].par[RRA_seasonal_smoothing_window].u_val);
+                        rrd.rra_def[i].par[RRA_seasonal_smoothing_window].
+                        u_val);
             }
             fprintf(out_file,
                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",