From ec569f3f36a54915163d25c5410c0f3eae7b4420 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Mon, 20 Feb 2023 21:02:58 -0800 Subject: [PATCH] Removed extraneous ; --- src/wofi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wofi.c b/src/wofi.c index e43aa09..3f9fc8d 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -1072,7 +1072,7 @@ static GdkModifierType get_mask_from_keystate(guint state) { // Alt if ((state & GDK_MOD1_MASK) == GDK_MOD1_MASK) { return GDK_MOD1_MASK; - }; + } return 0; }