From: Florian Forster Date: Thu, 4 Sep 2008 13:00:40 +0000 (+0200) Subject: processes plugin: Fix a format string. X-Git-Tag: collectd-4.5.0~2^2^2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=db0ab1056d34e5f77bf47e762b85ec01cf85a2a8;p=collectd.git processes plugin: Fix a format string. --- diff --git a/src/processes.c b/src/processes.c index 6ad46813..c8376812 100644 --- a/src/processes.c +++ b/src/processes.c @@ -850,7 +850,7 @@ static int ps_read (void) * There's only zombie tasks, which are * handled above. */ default: - WARNING ("Unknown thread status: %s", + WARNING ("Unknown thread status: %i", thread_data.run_state); break; } /* switch (thread_data.run_state) */