summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2003-10-06 20:47:53 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2003-10-06 20:47:53 +0000
commit0acef2ac836edf8003bbf0b00b1f63f2a808df5c (patch)
tree4d1daf43883acaadcb658a0c7237183766909b16
parent9e81fc0ab54c7c6d12053304a23eb0277ae0d2e2 (diff)
downloadswig-0acef2ac836edf8003bbf0b00b1f63f2a808df5c.tar.gz
unsigned char pointers and references fix
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5185 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Lib/csharp/typemaps.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/csharp/typemaps.i b/Lib/csharp/typemaps.i
index 2f7ded594..f40d9d8aa 100644
--- a/Lib/csharp/typemaps.i
+++ b/Lib/csharp/typemaps.i
@@ -6,7 +6,7 @@
%typemap(ctype) bool *, bool & "bool *"
%typemap(ctype) char & "char *"
%typemap(ctype) signed char *, signed char & "signed char *"
-%typemap(ctype) unsigned char *, unsigned char & "unsigned short *"
+%typemap(ctype) unsigned char *, unsigned char & "unsigned char *"
%typemap(ctype) short *, short & "short *"
%typemap(ctype) unsigned short *, unsigned short & "unsigned short *"
%typemap(ctype) int *, int & "int *"