$OpenBSD: patch-src_rrd_graph_helper_c,v 1.4 2017/05/18 13:51:42 sthen Exp $

Correctly print time_t.

Index: src/rrd_graph_helper.c
--- src/rrd_graph_helper.c.orig
+++ src/rrd_graph_helper.c
@@ -1455,7 +1455,7 @@ static int parse_shift(enum gf_en gf,parsedargs_t* pa,
   if (gdp->shidx>=0) {
     dprintf("SHIFTBY : %s (%i)\n",im->gdes[gdp->shidx].vname,gdp->shidx);
   } else {
-    dprintf("SHIFTBY : %li\n",gdp->shval);
+    dprintf("SHIFTBY : %lld\n", (long long)gdp->shval);
   }
   dprintf("=================================\n");
   /* and return */
