From: Andrew Bays Date: Mon, 17 Jun 2019 11:51:42 +0000 (-0400) Subject: Cast cdtime_t to unsigned long long when necessary X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=defa8029f92f86dff65c18f127c80472f5833362 Cast cdtime_t to unsigned long long when necessary --- diff --git a/src/connectivity.c b/src/connectivity.c index 30977e18..45b65aab 100644 --- a/src/connectivity.c +++ b/src/connectivity.c @@ -27,10 +27,10 @@ #include "collectd.h" -#include "utils/common/common.h" #include "plugin.h" -#include "utils_complain.h" +#include "utils/common/common.h" #include "utils/ignorelist/ignorelist.h" +#include "utils_complain.h" #include #include @@ -474,7 +474,8 @@ static int connectivity_link_state(struct nlmsghdr *msg) { } DEBUG("connectivity plugin (%llu): Interface %s status is now %s", - il->timestamp, dev, ((ifi->ifi_flags & IFF_RUNNING) ? "UP" : "DOWN")); + (unsigned long long)il->timestamp, dev, + ((ifi->ifi_flags & IFF_RUNNING) ? "UP" : "DOWN")); // no need to loop again, we found the interface name attr // (otherwise the first if-statement in the loop would