Skip to content

Commit

Permalink
Fixing typo in macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Bodenmann committed Nov 14, 2015
1 parent 14b5184 commit 10c047d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@
#if GFX_NO_INLINE
#define GFXINLINE
#else
#if GFX_COMPILER == GFX_COMILER_KEIL
#if GFX_COMPILER == GFX_COMPILER_KEIL
#define GFXINLINE __inline
#else
#define GFXINLINE inline
Expand Down
4 changes: 2 additions & 2 deletions src/gos/gos_x_threads.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/gwin/gwin_class.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#if GFX_USE_GWIN || defined(__DOXYGEN__)

#if GFX_COMPILER == GFX_COMILER_KEIL
#if GFX_COMPILER == GFX_COMPILER_KEIL
#pragma anon_unions
#endif

Expand Down

0 comments on commit 10c047d

Please sign in to comment.