aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-10-21 18:33:56 -0400
committerDavid Robillard <d@drobilla.net>2023-10-21 18:33:56 -0400
commit495ee90d4f5798f2751f8191daf0a316772ce8c0 (patch)
tree8b63d8153de91364c4e4fea9f0db33bb038ab61f /src
parent4d9059e23bb6f2edfcb938c050fe8eb78bec2b62 (diff)
downloadpugl-495ee90d4f5798f2751f8191daf0a316772ce8c0.tar.gz
pugl-495ee90d4f5798f2751f8191daf0a316772ce8c0.tar.bz2
pugl-495ee90d4f5798f2751f8191daf0a316772ce8c0.zip
Fix whitespace
Diffstat (limited to 'src')
-rw-r--r--src/x11.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/x11.c b/src/x11.c
index 2de7d1c..d9a8773 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -881,7 +881,8 @@ translateKey(PuglView* const view, XEvent* const xevent, PuglEvent* const event)
event->key.keycode = xevent->xkey.keycode;
// Mask off the control and shift bits to get the lowercase "main" symbol
- xevent->xkey.state = xevent->xkey.state & ~(unsigned)(ControlMask|ShiftMask);
+ xevent->xkey.state =
+ xevent->xkey.state & ~(unsigned)(ControlMask | ShiftMask);
// Lookup unshifted key
char ustr[8] = PUGL_INIT_STRUCT;