diff Core/Toolbox.cpp @ 337:26218c4de7e0

test added
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 13 Jan 2013 22:06:31 +0100
parents 3c291753231f
children cda6938a8c6f
line wrap: on
line diff
--- a/Core/Toolbox.cpp	Sun Jan 13 21:50:11 2013 +0100
+++ b/Core/Toolbox.cpp	Sun Jan 13 22:06:31 2013 +0100
@@ -594,7 +594,7 @@
   }
 
 
-  static uint8_t Hex2Dec(char c)
+  static char Hex2Dec(char c)
   {
     return ((c >= '0' && c <= '9') ? c - '0' :
             ((c >= 'a' && c <= 'f') ? c - 'a' + 10 : c - 'A' + 10));