aboutsummaryrefslogtreecommitdiffstats
path: root/pugl_test.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-28 12:08:40 +0100
committerDavid Robillard <d@drobilla.net>2019-06-27 19:30:58 +0200
commitbca65c93cd0228d408e0b6029b33da6449a5b567 (patch)
tree25e83c6595dba5e2c02b8ad567c593af9b20ab4c /pugl_test.c
parent24aef2fc55c6d84f4ce0e8a3554d2d3dcbf79ee6 (diff)
downloadpugl-bca65c93cd0228d408e0b6029b33da6449a5b567.tar.gz
pugl-bca65c93cd0228d408e0b6029b33da6449a5b567.tar.bz2
pugl-bca65c93cd0228d408e0b6029b33da6449a5b567.zip
Consistently use uint32_t everywhere
Diffstat (limited to 'pugl_test.c')
-rw-r--r--pugl_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl_test.c b/pugl_test.c
index 0bc65d5..dad1d9c 100644
--- a/pugl_test.c
+++ b/pugl_test.c
@@ -133,7 +133,7 @@ onDisplay(PuglView* view)
}
static void
-printModifiers(PuglView* view, unsigned mods)
+printModifiers(PuglView* view, uint32_t mods)
{
fprintf(stderr, "Modifiers:%s%s%s%s\n",
(mods & PUGL_MOD_SHIFT) ? " Shift" : "",