From: Andrew Bays Date: Thu, 5 Sep 2019 12:23:31 +0000 (-0400) Subject: Another string formatting fix attempt X-Git-Tag: 5.10.0~17^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a59c14adfa86c823efff87ca797c4d6e6ce32913;p=thirdparty%2Fcollectd.git Another string formatting fix attempt --- diff --git a/src/procevent.c b/src/procevent.c index c117242a6..ab000dbd0 100644 --- a/src/procevent.c +++ b/src/procevent.c @@ -815,7 +815,7 @@ static int read_event() { } else { DEBUG("procevent plugin: Process %d status is now %s at %llu", proc_id, (proc_status == PROCEVENT_EXITED ? "EXITED" : "STARTED"), - CDTIME_T_TO_US(cdtime())); + (unsigned long long)cdtime()); ring.buffer[ring.head][RBUF_PROC_ID_INDEX] = proc_id; ring.buffer[ring.head][RBUF_PROC_STATUS_INDEX] = proc_status;