format: Fix type code for Z format in system and portable files.
authorBen Pfaff <blp@cs.stanford.edu>
Mon, 16 Aug 2010 05:02:38 +0000 (22:02 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 24 Aug 2010 03:29:42 +0000 (20:29 -0700)
Z format is code 15, not 16 (which is N format).

src/data/format.def

index 38bc73e25846dd6299a4b4abdcca475ba0cc0537..08ce1c3edc2e127ba6af32e259c4367fde00818a 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2006, 2010 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -31,7 +31,7 @@ FMT (CCE,      number, -1,  2, 37, FMT_CAT_CUSTOM)
 
 /* Legacy numeric formats. */
 FMT (N,        N,       1,  1, 16, FMT_CAT_LEGACY)
-FMT (Z,        Z,       1,  1, 16, FMT_CAT_LEGACY)
+FMT (Z,        Z,       1,  1, 15, FMT_CAT_LEGACY)
 
 /* Binary and hexadecimal formats. */
 FMT (P,        P,       1,  1,  8, FMT_CAT_BINARY)