From 319672e4d10dfc845359b41d3e7137346ef58392 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Tue, 12 Apr 2011 21:55:07 -0400
Subject: [PATCH] =?UTF-8?q?Fix=20signed=20char=20arg=20parsing.=20(fix=20b?=
 =?UTF-8?q?y=20Fr=C3=A9d=C3=A9ric=20Bastien)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 pyopencl/tools.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyopencl/tools.py b/pyopencl/tools.py
index 7b59d4fc..8a25b801 100644
--- a/pyopencl/tools.py
+++ b/pyopencl/tools.py
@@ -232,7 +232,7 @@ def parse_c_arg(c_arg):
         dtype = np.uint64
     elif tp in ["short", "short int"]: dtype = np.int16
     elif tp in ["unsigned short", "unsigned short int"]: dtype = np.uint16
-    elif tp in ["char"]: dtype = np.int8
+    elif tp in ["char", "signed char"]: dtype = np.int8
     elif tp in ["unsigned char"]: dtype = np.uint8
     elif tp in ["bool"]: dtype = np.bool
     else:
-- 
GitLab