From e2004cdfb5c19647c3fc35f1322a5990cf04a8c8 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Mon, 18 Aug 2008 18:19:26 +0200 Subject: [PATCH] tcpconns plugin: Fix another format string. --- src/tcpconns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.11.0