summaryrefslogtreecommitdiff
path: root/common/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/system.c')
-rw-r--r--common/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.c b/common/system.c
index 467218560a..d956787e74 100644
--- a/common/system.c
+++ b/common/system.c
@@ -285,7 +285,7 @@ void system_print_reset_flags(void)
}
for (i = 0; i < ARRAY_SIZE(reset_flag_descs); i++) {
- if (reset_flags & (1 << i)) {
+ if (reset_flags & BIT(i)) {
if (count++)
CPUTS(" ");