From 49776ef9e75065daf21c194c212cde73b378ff30 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 19 Jan 2014 00:38:36 +0200 Subject: [PATCH] Use correct C type in byte_converter. --- Tools/clinic/clinic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index 748f5cf20fc..0987d568bd6 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -2062,7 +2062,7 @@ class char_converter(CConverter): @add_legacy_c_converter('B', bitwise=True) class byte_converter(CConverter): - type = 'byte' + type = 'unsigned char' default_type = int format_unit = 'b' c_ignored_default = "'\0'"