pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/case.h


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/case.h
Date: Sun, 21 Aug 2005 03:21:07 -0400

Index: pspp/src/case.h
diff -u pspp/src/case.h:1.7 pspp/src/case.h:1.8
--- pspp/src/case.h:1.7 Sun Jul 31 21:42:46 2005
+++ pspp/src/case.h     Sun Aug 21 07:21:06 2005
@@ -73,7 +73,7 @@
 
 CASE_INLINE const union value *case_data (const struct ccase *, size_t idx);
 CASE_INLINE double case_num (const struct ccase *, size_t idx);
-CASE_INLINE const char *case_str (const struct ccase *, size_t idx);
+CASE_INLINE const unsigned char *case_str (const struct ccase *, size_t idx);
 
 CASE_INLINE union value *case_data_rw (struct ccase *, size_t idx);
 
@@ -170,7 +170,7 @@
   return c->case_data->values[idx].f;
 }
 
-static inline const char *
+static inline const unsigned char *
 case_str (const struct ccase *c, size_t idx)
 {
   return c->case_data->values[idx].s;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]