Cleanup: Use explicit unsigned int type

This is as per our code style states ans as majority of the team
prefers types to be used.
This commit is contained in:
Sergey Sharybin
2017-04-20 10:46:24 +02:00
parent 09bf8f4a69
commit b5b0fc9c94

View File

@@ -174,10 +174,10 @@ static void blf_font_ensure_ascii_table(FontBLF *font)
} \ } \
} (void)0 } (void)0
static unsigned verts_needed(const FontBLF *font, const char *str, size_t len) static unsigned int verts_needed(const FontBLF *font, const char *str, size_t len)
{ {
unsigned length = (unsigned)((len == INT_MAX) ? strlen(str) : len); unsigned int length = (unsigned int)((len == INT_MAX) ? strlen(str) : len);
unsigned quad_ct = 1; unsigned int quad_ct = 1;
if (font->flags & BLF_SHADOW) { if (font->flags & BLF_SHADOW) {
if (font->shadow == 0) if (font->shadow == 0)