summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2021-01-15 00:02:33 -0800
committerSam Lantinga <slouken@libsdl.org>2021-01-15 00:02:33 -0800
commitbe08cca556fe0c39ecc9bbacc6391ab2da6b0a4b (patch)
tree0e216b270f3223acf19174f50ac1e6123debfb5e /include
parent1d366af1261fe77926cb48eef453069b9a7132d9 (diff)
downloadsdl-be08cca556fe0c39ecc9bbacc6391ab2da6b0a4b.tar.gz
Fixed build
Diffstat (limited to 'include')
-rw-r--r--include/SDL_assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SDL_assert.h b/include/SDL_assert.h
index b8dfba2db..b1355b31b 100644
--- a/include/SDL_assert.h
+++ b/include/SDL_assert.h
@@ -55,7 +55,7 @@ assert can have unique static variables associated with it.
#define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" )
#elif ( defined(__APPLE__) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */
#define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" )
-#elif ( defined(__APPLE__) && defined(__arm__)
+#elif defined(__APPLE__) && defined(__arm__)
#define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" )
#elif defined(__386__) && defined(__WATCOMC__)
#define SDL_TriggerBreakpoint() { _asm { int 0x03 } }