From 79f672969b3b2c0d71d7e448217b6b1be76a049f Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sun, 29 Jan 2006 19:12:52 +0000 Subject: [PATCH] (xuheader): Remove values[], not used. --- src/lib/common/xundump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/common/xundump.c b/src/lib/common/xundump.c index 0ec66d2d..6ad560c0 100644 --- a/src/lib/common/xundump.c +++ b/src/lib/common/xundump.c @@ -496,7 +496,7 @@ xuloadrow(int type, int row, struct value values[]) } static int -xuheader(FILE *fp, int expected_table, struct value values[]) +xuheader(FILE *fp, int expected_table) { char name[64]; struct empfile *ep; @@ -601,7 +601,7 @@ xundump(FILE *fp, char *file, int expected_table) } else lineno++; - if ((type = xuheader(fp, expected_table, values)) == -1) + if ((type = xuheader(fp, expected_table)) == -1) return -1; ep = &empfile[type];