Fix arm BUILD

aarch64 gcc warns on this line.  Fix it.

Change-Id: Ic752cda31f27b7d68af99ca53efcdfcdf0e659a7
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/include/str_utility.hpp b/include/str_utility.hpp
index 31c44b4..04f585b 100644
--- a/include/str_utility.hpp
+++ b/include/str_utility.hpp
@@ -32,7 +32,7 @@
     // Converts a character to lower case without relying on std::locale
     if ('A' <= c && c <= 'Z')
     {
-        c -= ('A' - 'a');
+        c -= static_cast<char>('A' - 'a');
     }
     return c;
 }