From 473e4716fc6e59e0d65a8bab937025ab09babbbc Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 25 Jan 2019 14:17:06 +1100 Subject: [PATCH] [client] spice: debug print unsigned int re #127 --- client/spice/spice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/spice/spice.c b/client/spice/spice.c index 4a33c0fb..53e0cd1c 100644 --- a/client/spice/spice.c +++ b/client/spice/spice.c @@ -156,7 +156,7 @@ bool spice_connect(const char * host, const unsigned short port, const char * pa inet_pton(spice.family, host, &spice.addr.in.sin_addr); spice.addr.in.sin_family = spice.family; spice.addr.in.sin_port = htons(port); - DEBUG_INFO("Remote: %s:%d", host, port); + DEBUG_INFO("Remote: %s:%u", host, port); } LG_LOCK_INIT(spice.mouse.lock);