x11/events: Fly-by coding style cleanup

A large else block didn't have {}, so added them.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1700>
This commit is contained in:
Jonas Ådahl 2021-02-02 23:42:53 +01:00
parent 72704f787c
commit 6c7765439f

View File

@ -676,29 +676,28 @@ meta_spew_core_event (MetaX11Display *x11_display,
alarm_state_to_string (aevent->state)); alarm_state_to_string (aevent->state));
} }
else else
if (META_X11_DISPLAY_HAS_SHAPE (x11_display) && {
event->type == (x11_display->shape_event_base + ShapeNotify)) if (META_X11_DISPLAY_HAS_SHAPE (x11_display) &&
{ event->type == (x11_display->shape_event_base + ShapeNotify))
XShapeEvent *sev = (XShapeEvent*) event; {
XShapeEvent *sev = (XShapeEvent*) event;
name = "ShapeNotify"; extra =
g_strdup_printf ("kind: %s "
extra = "x: %d y: %d w: %u h: %u "
g_strdup_printf ("kind: %s " "shaped: %d",
"x: %d y: %d w: %u h: %u " sev->kind == ShapeBounding ?
"shaped: %d", "ShapeBounding" :
sev->kind == ShapeBounding ? (sev->kind == ShapeClip ?
"ShapeBounding" : "ShapeClip" : "(unknown)"),
(sev->kind == ShapeClip ? sev->x, sev->y, sev->width, sev->height,
"ShapeClip" : "(unknown)"), sev->shaped);
sev->x, sev->y, sev->width, sev->height, }
sev->shaped); else
} {
else extra = g_strdup_printf ("type: %d", event->xany.type);
{ }
name = "(Unknown event)"; }
extra = g_strdup_printf ("type: %d", event->xany.type);
}
break; break;
} }