summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--c/test_c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/test_c.py b/c/test_c.py
index efc1b74..f2f1c70 100644
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3638,7 +3638,7 @@ def test_struct_array_no_length():
assert not buffer_warning(cast(BIntP, p))
def test_more_buffer_warning():
- BChar = new_primitive_type("char")
+ BChar = new_primitive_type("unsigned char")
BCharP = new_pointer_type(BChar)
BArray = new_array_type(BCharP, 10) # char[10]
p = newp(BArray)