From: Florian Forster Date: Mon, 18 Aug 2008 16:19:26 +0000 (+0200) Subject: tcpconns plugin: Fix another format string. X-Git-Tag: collectd-4.3.4~15^2 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=e2004cdfb5c19647c3fc35f1322a5990cf04a8c8;p=collectd.git tcpconns plugin: Fix another format string. --- diff --git a/src/tcpconns.c b/src/tcpconns.c index 0fa44f9a..2e115922 100644 --- a/src/tcpconns.c +++ b/src/tcpconns.c @@ -258,8 +258,8 @@ static int conn_handle_ports (uint16_t port_local, uint16_t port_remote, uint8_t #endif ) { - NOTICE ("tcpconns plugin: Ignoring connection with unknown state 0x%02x.", - state); + NOTICE ("tcpconns plugin: Ignoring connection with " + "unknown state 0x%02"PRIx8".", state); return (-1); }