From 5643b25173203af07925fdc4d12bda1f62769502 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 15 Aug 2010 22:02:38 -0700 Subject: [PATCH] format: Fix type code for Z format in system and portable files. Z format is code 15, not 16 (which is N format). --- src/data/format.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2