From 0550f1217cbebe82e9857b25c07d7fdc720c087d Mon Sep 17 00:00:00 2001 From: vitaut Date: Wed, 11 Nov 2015 06:45:27 -0800 Subject: [PATCH] Store unsigned char value in uint_value instead of int_value --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index eb4a86c1..36bc0109 100644 --- a/format.h +++ b/format.h @@ -1046,7 +1046,7 @@ class MakeValue : public Arg { FMT_MAKE_VALUE(double, double_value, DOUBLE) FMT_MAKE_VALUE(long double, long_double_value, LONG_DOUBLE) FMT_MAKE_VALUE(signed char, int_value, INT) - FMT_MAKE_VALUE(unsigned char, int_value, UINT) + FMT_MAKE_VALUE(unsigned char, uint_value, UINT) FMT_MAKE_VALUE(char, int_value, CHAR) #if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED)