From b5b0fc9c947ca11126119c8a6e30b4a76c7daad7 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 20 Apr 2017 10:46:24 +0200 Subject: 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. --- source/blender/blenfont/intern/blf_font.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/blenfont') diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c index 4d7c180a488..3ba75517581 100644 --- a/source/blender/blenfont/intern/blf_font.c +++ b/source/blender/blenfont/intern/blf_font.c @@ -174,10 +174,10 @@ static void blf_font_ensure_ascii_table(FontBLF *font) } \ } (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 quad_ct = 1; + unsigned int length = (unsigned int)((len == INT_MAX) ? strlen(str) : len); + unsigned int quad_ct = 1; if (font->flags & BLF_SHADOW) { if (font->shadow == 0) -- cgit v1.2.3