From: Ben Pfaff Date: Mon, 16 Aug 2010 05:02:38 +0000 (-0700) Subject: format: Fix type code for Z format in system and portable files. X-Git-Tag: sav-api~90 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=5643b25173203af07925fdc4d12bda1f62769502 format: Fix type code for Z format in system and portable files. Z format is code 15, not 16 (which is N format). --- diff --git a/src/data/format.def b/src/data/format.def index 38bc73e258..08ce1c3edc 100644 --- a/src/data/format.def +++ b/src/data/format.def @@ -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)