From ec7c24d56346571318d6ebd37232e6fa94f81561 Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Thu, 26 Sep 2024 23:27:34 +0900 Subject: [PATCH] Fix build on 32bit --- module/rdpClientCon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/rdpClientCon.c b/module/rdpClientCon.c index ff8ac29..f884131 100644 --- a/module/rdpClientCon.c +++ b/module/rdpClientCon.c @@ -830,7 +830,7 @@ rdpClientConResizeAllMemoryAreas(rdpPtr dev, rdpClientCon *clientCon) dev->msFrameInterval = MIN_MS_BETWEEN_FRAMES; break; } - LLOGLN(0, (" msFrameInterval %d", dev->msFrameInterval)); + LLOGLN(0, (" msFrameInterval %ld", (long)dev->msFrameInterval)); rdpClientConAllocateSharedMemory(clientCon, bytes);