diff options
author | Joel Bodenmann <joel@embedded.pro> | 2016-08-13 00:49:19 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@embedded.pro> | 2016-08-13 00:49:19 +0200 |
commit | b9b555eae26a539ee71b30668f8e3fdb343e6ac1 (patch) | |
tree | ae1045f93701b47d56ba84c296b98b8d59d4b832 /src | |
parent | 05e29696334064a7fc75a593ca8fe24e81448910 (diff) | |
download | uGFX-b9b555eae26a539ee71b30668f8e3fdb343e6ac1.tar.gz uGFX-b9b555eae26a539ee71b30668f8e3fdb343e6ac1.tar.bz2 uGFX-b9b555eae26a539ee71b30668f8e3fdb343e6ac1.zip |
Fixing possible crash when GDISP_NEED_TEXT_WORDWRAP is enabled.
Diffstat (limited to 'src')
-rw-r--r-- | src/gdisp/gdisp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c index 4f879291..d25a9d55 100644 --- a/src/gdisp/gdisp.c +++ b/src/gdisp/gdisp.c @@ -3170,7 +3170,10 @@ void gdispGDrawBox(GDisplay *g, coord_t x, coord_t y, coord_t cx, coord_t cy, co /* Callback to render string boxes with word wrap. */ #if GDISP_NEED_TEXT_WORDWRAP static bool mf_countline_callback(mf_str line, uint16_t count, void *state) { - int *linecount = (int*)state; + (void) line; + (void) count; + + uint16_t *linecount = (uint16_t*)state; (*linecount)++; return TRUE; |