aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-09-18 23:36:35 +1000
committerinmarket <andrewh@inmarket.com.au>2013-09-18 23:48:22 +1000
commit96c4131ca1f1ff3573d393e51d51d38c3b2cc215 (patch)
treeb26c4ffcc41b754c507338f1c115625c44c4811a
parent47f06373f361bf7cdea36ba167ee54afc60960c0 (diff)
downloaduGFX-96c4131ca1f1ff3573d393e51d51d38c3b2cc215.tar.gz
uGFX-96c4131ca1f1ff3573d393e51d51d38c3b2cc215.tar.bz2
uGFX-96c4131ca1f1ff3573d393e51d51d38c3b2cc215.zip
Fix some compiler warnings
-rw-r--r--src/gdisp/mcufont/mf_kerning.c3
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; }