From 4bd005520dabab92394db70050561d3a155d028f Mon Sep 17 00:00:00 2001 From: cadmic Date: Tue, 30 Jan 2024 17:15:57 -0800 Subject: [PATCH] Remove a double #endif (#1672) --- include/macros.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/macros.h b/include/macros.h index 937ccb5106..2a436718cb 100644 --- a/include/macros.h +++ b/include/macros.h @@ -102,8 +102,7 @@ #if OOT_DEBUG #define PRINTF osSyncPrintf -#else -#ifdef __sgi /* IDO compiler */ +#elif defined(__sgi) /* IDO compiler */ // IDO doesn't support variadic macros, but it merely throws a warning for the // number of arguments not matching the definition (warning 609) instead of // throwing an error. We suppress this warning and rely on GCC to catch macro @@ -112,7 +111,6 @@ #else #define PRINTF(format, ...) (void)0 #endif -#endif #if OOT_DEBUG