From 03d2836785c9fc2dd5dd3ada9a25cb9a52960cfb Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 26 Dec 2015 15:12:41 +0100 Subject: [PATCH] Fixed: GCC warnings --- code/nel/src/gui/group_html.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp index 7e56ce506..1693cb08a 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -5361,8 +5361,8 @@ namespace NLGUI if (it->second == "lighter") { const uint lighter[] = {100, 100, 100, 100, 100, 400, 400, 700, 700}; - int index = getFontWeight() / 100 - 1; - clamp(index, 1, 9); + uint index = getFontWeight() / 100 - 1; + clamp(index, 1u, 9u); weight = lighter[index-1]; } else @@ -5377,7 +5377,7 @@ namespace NLGUI if (fromString(it->second, weight)) { weight = (weight / 100); - clamp(weight, 1, 9); + clamp(weight, 1u, 9u); weight *= 100; } style.FontWeight = weight;