diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-01-04 14:51:07 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-04 14:53:05 +0100 |
commit | 3a473e08ab9e0cc00518409c3e1bf4edb68aecac (patch) | |
tree | f534a0c61d9a086c4dfba91c340edf6044a388cc /glcdgraphics | |
parent | 9456a4947fd336f171dc448e318678193f6f580a (diff) | |
download | graphlcd-base-3a473e08ab9e0cc00518409c3e1bf4edb68aecac.tar.gz graphlcd-base-3a473e08ab9e0cc00518409c3e1bf4edb68aecac.tar.bz2 |
glcdgraphics/font.c: fix compilation with musl
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'glcdgraphics')
-rw-r--r-- | glcdgraphics/font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcdgraphics/font.c b/glcdgraphics/font.c index 20f1274..1b33772 100644 --- a/glcdgraphics/font.c +++ b/glcdgraphics/font.c @@ -176,7 +176,7 @@ bool cFont::LoadFNT(const std::string & fileName, const std::string & encoding) int y; int loop; int num = 0; - uint dot; uint b; + unsigned int dot; unsigned int b; cBitmap * charBitmap = new cBitmap(charWidth, fontHeight); charBitmap->SetMonochrome(true); charBitmap->Clear(); |