X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=utilities%2Fpspp-dump-sav.c;fp=utilities%2Fpspp-dump-sav.c;h=a3aad0bf249ff7cebc21b7e8ff75905b48041e64;hb=8d1e072157ee3c8273e328c491be3c8bf57452da;hp=54e4712b589830f548b8d2efbeeb4eb75097cbe3;hpb=38980bbfac573dcefe25021e0d9ff8a6894372ca;p=pspp diff --git a/utilities/pspp-dump-sav.c b/utilities/pspp-dump-sav.c index 54e4712b58..a3aad0bf24 100644 --- a/utilities/pspp-dump-sav.c +++ b/utilities/pspp-dump-sav.c @@ -227,7 +227,6 @@ read_header (struct sfm_reader *r) char eye_catcher[61]; uint8_t raw_layout_code[4]; int32_t layout_code; - int32_t nominal_case_size; int32_t compressed; int32_t weight_index; int32_t ncases; @@ -254,7 +253,7 @@ read_header (struct sfm_reader *r) layout_code = integer_get (r->integer_format, raw_layout_code, sizeof raw_layout_code); - nominal_case_size = read_int (r); + read_int (r); /* Nominal case size (not actually useful). */ compressed = read_int (r); weight_index = read_int (r); ncases = read_int (r);