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

Correctly print time_t.

Index: src/rrd_lastupdate.c
--- src/rrd_lastupdate.c.orig
+++ src/rrd_lastupdate.c
@@ -73,7 +73,7 @@ int rrd_lastupdate (int argc, char **argv)
         printf(" %s", ds_names[i]);
     printf ("\n\n");
 
-    printf ("%10lu:", last_update);
+    printf ("%10lld:", (long long)last_update);
     for (i = 0; i < ds_count; i++) {
         printf(" %s", last_ds[i]);
         free(last_ds[i]);
