From e290347433fb2dc0963f4f081f191e98e12b1996 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Fri, 7 Jun 2024 01:38:32 -0400 Subject: [PATCH] Remove needless parens --- src/device/isamem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/isamem.c b/src/device/isamem.c index 99e6e51b6..1f071388c 100644 --- a/src/device/isamem.c +++ b/src/device/isamem.c @@ -560,7 +560,7 @@ isamem_init(const device_t *info) if (!!device_get_config_int("start")) dev->start_addr = device_get_config_int("start"); dev->frame_addr[0] = device_get_config_hex20("frame"); - dev->flags |= (FLAG_EMS); + dev->flags |= FLAG_EMS; if (!!device_get_config_int("width")) dev->flags |= FLAG_WIDE; if (!!device_get_config_int("speed"))