aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-09-27 01:35:29 +1000
committerinmarket <andrewh@inmarket.com.au>2013-09-27 07:25:46 +1000
commita76dc59b22d2ae38c2cd293e36551c0052f07c83 (patch)
treea5c0e6684a7839b2362fb99f5876187230a0b94c
parentfd0196f7654c4f7a329e29e6de778a41f228ceb6 (diff)
downloaduGFX-a76dc59b22d2ae38c2cd293e36551c0052f07c83.tar.gz
uGFX-a76dc59b22d2ae38c2cd293e36551c0052f07c83.tar.bz2
uGFX-a76dc59b22d2ae38c2cd293e36551c0052f07c83.zip
Fix compiler warning in image code
-rw-r--r--src/gdisp/image.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gdisp/image.c b/src/gdisp/image.c
index 89f42ee1..1e9ac3d6 100644
--- a/src/gdisp/image.c
+++ b/src/gdisp/image.c
@@ -16,6 +16,8 @@
#if GFX_USE_GDISP && GDISP_NEED_IMAGE
+#include <string.h>
+
/* The structure defining the routines for image drawing */
typedef struct gdispImageHandlers {
gdispImageError (*open)(gdispImage *img); /* The open function */