From 84691c7b9bb2c294b6cad03ca5096aa308238aa2 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 4 Dec 2017 19:15:35 +0100 Subject: [PATCH] Update retro_miscellaneous.h --- libretro-common/include/retro_miscellaneous.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/include/retro_miscellaneous.h b/libretro-common/include/retro_miscellaneous.h index bfa3fcb741..c2e11b021f 100644 --- a/libretro-common/include/retro_miscellaneous.h +++ b/libretro-common/include/retro_miscellaneous.h @@ -80,7 +80,7 @@ #define BIT128_SET(a, bit) ((a).data[(bit) >> 5] |= (1 << ((bit) & 31))) #define BIT128_CLEAR(a, bit) ((a).data[(bit) >> 5] &= ~(1 << ((bit) & 31))) #define BIT128_GET(a, bit) ((a).data[(bit) >> 5] & (1 << ((bit) & 31))) -#define BIT128_CLEAR_ALL(a) memset(&(a), 0, sizeof(a)); +#define BIT128_CLEAR_ALL(a) memset(&(a), 0, sizeof(a)) /* Helper macros and struct to keep track of many booleans. * To check for multiple bits, use &&, not &.