8a9690b1f5
changes: -minor feature additions -bugfixes
13 lines
468 B
Text
13 lines
468 B
Text
$NetBSD: patch-aa,v 1.15 2012/02/03 15:43:44 drochner Exp $
|
|
|
|
--- src/rrd_lastupdate.c.orig 2012-01-24 10:08:48.000000000 +0000
|
|
+++ src/rrd_lastupdate.c
|
|
@@ -75,7 +75,7 @@ int rrd_lastupdate (int argc, char **arg
|
|
printf(" %s", ds_names[i]);
|
|
printf ("\n\n");
|
|
|
|
- printf ("%10lu:", last_update);
|
|
+ printf ("%10llu:", (unsigned long long)last_update);
|
|
for (i = 0; i < ds_count; i++) {
|
|
printf(" %s", last_ds[i]);
|
|
free(last_ds[i]);
|