Modifier indices are unsigned

This commit is contained in:
Kovid Goyal 2021-04-06 21:45:02 +05:30
parent 7e78f30739
commit 0935dd053c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

2
glfw/xkb_glfw.c vendored
View File

@ -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);
}