From 0935dd053cd9047938f8d40338c13335233d1b53 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 6 Apr 2021 21:45:02 +0530 Subject: [PATCH] Modifier indices are unsigned --- glfw/xkb_glfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/xkb_glfw.c b/glfw/xkb_glfw.c index 10bd554f6..ae9d7c9c6 100644 --- a/glfw/xkb_glfw.c +++ b/glfw/xkb_glfw.c @@ -368,7 +368,7 @@ glfw_xkb_update_masks(_GLFWXKBData *xkb) { S(super, XKB_MOD_NAME_LOGO); } #undef S - debug("Modifier indices alt:%d super:%d hyper:%d meta:%d numlock:%d\n", + debug("Modifier indices alt:%u super:%u hyper:%u meta:%u numlock:%u\n", xkb->altIdx, xkb->superIdx, xkb->hyperIdx, xkb->metaIdx, xkb->numLockIdx); }