From fd813166d56acc2bc1503c1b50129c792496abd0 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 17 Jun 2020 22:32:28 +0100 Subject: [PATCH] Fix build warning on 32bit systems Signed-off-by: falkTX --- src/nsmd.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nsmd.cpp b/src/nsmd.cpp index 9f14068..897d3d1 100644 --- a/src/nsmd.cpp +++ b/src/nsmd.cpp @@ -557,7 +557,8 @@ wait_for_announce ( void ) break; } - GUIMSG( "Done. %lu out of %lu clients announced within the initialization grace period", active, client.size() ); + GUIMSG( "Done. %lu out of %lu clients announced within the initialization grace period", + active, (long unsigned)client.size() ); } void