Skip to content

Commit c7aa502

Browse files
Remove unnecessary parentheses
1 parent ed26f49 commit c7aa502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/kb_cmd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ static struct KbCmd keyPressCMD(enum KeyCode code, enum KeyState event,
144144
}
145145

146146
static struct KbCmd keyPressCMDFromData(struct KeyData data) {
147-
return (keyPressCMD(data.c, KeyPressed, data.mods));
147+
return keyPressCMD(data.c, KeyPressed, data.mods);
148148
}
149149

150150
static struct KbCmd typeWordCMD(char *word) {

0 commit comments

Comments
 (0)