diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-09-18 23:36:35 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-09-18 23:48:22 +1000 |
commit | 96c4131ca1f1ff3573d393e51d51d38c3b2cc215 (patch) | |
tree | b26c4ffcc41b754c507338f1c115625c44c4811a /src/gdisp/mcufont | |
parent | 47f06373f361bf7cdea36ba167ee54afc60960c0 (diff) | |
download | uGFX-96c4131ca1f1ff3573d393e51d51d38c3b2cc215.tar.gz uGFX-96c4131ca1f1ff3573d393e51d51d38c3b2cc215.tar.bz2 uGFX-96c4131ca1f1ff3573d393e51d51d38c3b2cc215.zip |
Fix some compiler warnings
Diffstat (limited to 'src/gdisp/mcufont')
-rw-r--r-- | src/gdisp/mcufont/mf_kerning.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gdisp/mcufont/mf_kerning.c b/src/gdisp/mcufont/mf_kerning.c index 4118b78e..0ef35363 100644 --- a/src/gdisp/mcufont/mf_kerning.c +++ b/src/gdisp/mcufont/mf_kerning.c @@ -25,6 +25,7 @@ static void fit_leftedge(int16_t x, int16_t y, uint8_t count, uint8_t alpha, void *state) { struct kerning_state_s *s = state; + (void)count; if (alpha > 7) { @@ -64,7 +65,7 @@ static bool do_kerning(mf_char c) return true; } -static int16_t min16(int16_t a, int16_t b) { return (a < b) ? a : b; } +//static int16_t min16(int16_t a, int16_t b) { return (a < b) ? a : b; } static int16_t max16(int16_t a, int16_t b) { return (a > b) ? a : b; } static int16_t avg16(int16_t a, int16_t b) { return (a + b) / 2; } |