changeset 6313:8232ed4a7fc0

[project @ 2007-02-15 22:56:12 by jwe]
author jwe
date Thu, 15 Feb 2007 22:56:13 +0000
parents 725709ab0445
children 7cbf27ad6c3f
files src/ChangeLog src/mxarray.h
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Feb 15 21:36:00 2007 +0000
+++ b/src/ChangeLog	Thu Feb 15 22:56:13 2007 +0000
@@ -1,5 +1,7 @@
 2007-02-15  John W. Eaton  <jwe@octave.org>
 
+	* mxarray.h (mxChar): Use char instead of unsigned short.
+
 	* toplev.cc (Foctave_config_info): Remove
 	OCTAVE_CONF_MKOCTFILE_INCFLAGS and OCTAVE_CONF_MKOCTFILE_LFLAGS
 	from the list.
--- a/src/mxarray.h	Thu Feb 15 21:36:00 2007 +0000
+++ b/src/mxarray.h	Thu Feb 15 22:56:13 2007 +0000
@@ -79,7 +79,7 @@
 typedef int mxLogical;
 
 /* typedef Uint16 mxChar; */
-typedef unsigned short mxChar;
+typedef char mxChar;
 
 #if ! defined (MXARRAY_TYPEDEFS_ONLY)