From 47cd56c94c0b01099bc37c3a1059af8bec724579 Mon Sep 17 00:00:00 2001 From: red031000 Date: Tue, 20 Oct 2020 20:16:49 +0100 Subject: fix macro alignment --- arm9/lib/include/CARD_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arm9/lib/include/CARD_common.h') diff --git a/arm9/lib/include/CARD_common.h b/arm9/lib/include/CARD_common.h index 95274fd2..a784ccde 100644 --- a/arm9/lib/include/CARD_common.h +++ b/arm9/lib/include/CARD_common.h @@ -24,7 +24,7 @@ ((size) << CARD_BACKUP_TYPE_SIZEBIT_SHIFT) | \ ((vender) << CARD_BACKUP_TYPE_VENDER_SHIFT)) -#define ALIGN_MASK(a) ((a) - 1) +#define ALIGN_MASK(a) ((a) - 1) #define CARD_ALIGN_HI_BIT(n) (((u32)(n)) & ~ALIGN_MASK(CARD_ROM_PAGE_SIZE)) #define CARD_ALIGN_LO_BIT(n) (((u32)(n)) & ALIGN_MASK(CARD_ROM_PAGE_SIZE)) -- cgit v1.2.3