aboutsummaryrefslogtreecommitdiffstats
path: root/include/gdisp/lld
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-10-17 14:56:11 +1000
committerinmarket <andrewh@inmarket.com.au>2013-10-17 14:56:11 +1000
commit4c29822a756168779436a5c0b3af0c85ecb7d66d (patch)
treee2480f7636886e9dae9fa73fccf3560437c4134b /include/gdisp/lld
parentbc79e65ffa90162111675f8e7d3dbd302011a23c (diff)
downloaduGFX-4c29822a756168779436a5c0b3af0c85ecb7d66d.tar.gz
uGFX-4c29822a756168779436a5c0b3af0c85ecb7d66d.tar.bz2
uGFX-4c29822a756168779436a5c0b3af0c85ecb7d66d.zip
Bugfix to remove compile error that only affects GCC ARM compiler
Diffstat (limited to 'include/gdisp/lld')
-rw-r--r--include/gdisp/lld/gdisp_lld.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gdisp/lld/gdisp_lld.h b/include/gdisp/lld/gdisp_lld.h
index b1e89f09..1a08b330 100644
--- a/include/gdisp/lld/gdisp_lld.h
+++ b/include/gdisp/lld/gdisp_lld.h
@@ -171,7 +171,7 @@
/* External declarations. */
/*===========================================================================*/
-typedef struct GDisplay {
+struct GDisplay {
GDISPControl g; // The public GDISP stuff - must be the first element
#if GDISP_TOTAL_CONTROLLERS > 1
@@ -224,7 +224,7 @@ typedef struct GDisplay {
color_t linebuf[GDISP_LINEBUF_SIZE];
#endif
-} GDisplay;
+};
#if GDISP_TOTAL_CONTROLLERS == 1 || defined(GDISP_DRIVER_VMT) || defined(__DOXYGEN__)
#if GDISP_TOTAL_CONTROLLERS > 1