[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-cvs] Changes to pspp/src/val.h
From: |
Ben Pfaff |
Subject: |
[Pspp-cvs] Changes to pspp/src/val.h |
Date: |
Tue, 25 Oct 2005 00:28:22 -0400 |
Index: pspp/src/val.h
diff -u pspp/src/val.h:1.8 pspp/src/val.h:1.9
--- pspp/src/val.h:1.8 Sun Aug 7 04:39:28 2005
+++ pspp/src/val.h Tue Oct 25 04:28:17 2005
@@ -53,7 +53,7 @@
double f;
/* A short-string value. */
- unsigned char s[MAX_SHORT_STRING];
+ char s[MAX_SHORT_STRING];
/* Used by evaluate_expression() to return a string result.
As currently implemented, it's a pointer to a dynamic
@@ -61,7 +61,7 @@
Also used by the AGGREGATE procedure in handling string
values. */
- unsigned char *c;
+ char *c;
};
/* Maximum number of `union value's in a single number or string
- [Pspp-cvs] Changes to pspp/src/val.h,
Ben Pfaff <=