From: Andrew Bays Date: Thu, 5 Sep 2019 12:14:28 +0000 (-0400) Subject: Debian string formatting fix X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=3275bdc555a6097384ef190d4dc266f118c4493b Debian string formatting fix --- diff --git a/src/procevent.c b/src/procevent.c index ec7f57a5..c117242a 100644 --- a/src/procevent.c +++ b/src/procevent.c @@ -813,7 +813,7 @@ static int read_event() { usleep(1000); continue; } else { - DEBUG("procevent plugin: Process %d status is now %s at %lu", proc_id, + DEBUG("procevent plugin: Process %d status is now %s at %llu", proc_id, (proc_status == PROCEVENT_EXITED ? "EXITED" : "STARTED"), CDTIME_T_TO_US(cdtime()));