aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-11-14 21:11:41 +0100
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-11-14 21:11:41 +0100
commit10c047d0c0afd82f49695c598732df5ad12c0d08 (patch)
tree0cee394a7f3965242a5ae1b8592681af0101cf1b /src/gos
parent14b5184d60681ed92a07606185f7b4b26edbbcd1 (diff)
downloaduGFX-10c047d0c0afd82f49695c598732df5ad12c0d08.tar.gz
uGFX-10c047d0c0afd82f49695c598732df5ad12c0d08.tar.bz2
uGFX-10c047d0c0afd82f49695c598732df5ad12c0d08.zip
Fixing typo in macros
Diffstat (limited to 'src/gos')
-rw-r--r--src/gos/gos_x_threads.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gos/gos_x_threads.c b/src/gos/gos_x_threads.c
index bdb61ab9..76637322 100644
--- a/src/gos/gos_x_threads.c
+++ b/src/gos/gos_x_threads.c
@@ -203,12 +203,12 @@ static thread mainthread; // The main thread context
* If they don't exist compile them to be the standard setjmp() function.
* Similarly for longjmp().
*/
- #if (!defined(setjmp) && !defined(_setjmp)) || GFX_COMPILER == GFX_COMILER_KEIL
+ #if (!defined(setjmp) && !defined(_setjmp)) || GFX_COMPILER == GFX_COMPILER_KEIL
#define CXT_SAVE setjmp
#else
#define CXT_SAVE _setjmp
#endif
- #if (!defined(longjmp) && !defined(_longjmp)) || GFX_COMPILER == GFX_COMILER_KEIL
+ #if (!defined(longjmp) && !defined(_longjmp)) || GFX_COMPILER == GFX_COMPILER_KEIL
#define CXT_RESTORE longjmp
#else
#define CXT_RESTORE _longjmp