snmp plugin: Fix two format strings.
authorFlorian Forster <octo@noris.net>
Mon, 14 Jul 2008 09:57:41 +0000 (11:57 +0200)
committerFlorian Forster <octo@noris.net>
Mon, 14 Jul 2008 09:57:41 +0000 (11:57 +0200)
src/snmp.c

index 6788ea9..1824611 100644 (file)
@@ -707,14 +707,14 @@ static value_t csnmp_value_list_to_value (struct variable_list *vl, int type,
       || (vl->type == ASN_GAUGE))
   {
     temp = (uint32_t) *vl->val.integer;
-    DEBUG ("snmp plugin: Parsed int32 value is %llu.", temp);
+    DEBUG ("snmp plugin: Parsed int32 value is %"PRIu64".", temp);
   }
   else if (vl->type == ASN_COUNTER64)
   {
     temp = (uint32_t) vl->val.counter64->high;
     temp = temp << 32;
     temp += (uint32_t) vl->val.counter64->low;
-    DEBUG ("snmp plugin: Parsed int64 value is %llu.", temp);
+    DEBUG ("snmp plugin: Parsed int64 value is %"PRIu64".", temp);
   }
   else
   {