From d223865d2be282976d8f1caf5f49fa7fa7491254 Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Wed, 30 Nov 2005 00:33:37 +0000 Subject: [PATCH] (xuloadrow): Add missing case for VAL_SYMBOL_SET for trailing junk row check. (xuskipcommentlines): Make the function static. --- src/lib/common/xundump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/common/xundump.c b/src/lib/common/xundump.c index d04f671c..2b3bb269 100644 --- a/src/lib/common/xundump.c +++ b/src/lib/common/xundump.c @@ -405,6 +405,7 @@ xuloadrow(int type, int row, struct value values[]) break; case VAL_STRING: case VAL_SYMBOL: + case VAL_SYMBOL_SET: return gripe("Extra junk after the last column, read %s", values[j].v_field.v_string); case VAL_DOUBLE: @@ -417,7 +418,7 @@ xuloadrow(int type, int row, struct value values[]) return 0; } -void +static void xuskipcommentlines(FILE *fp) { int ch;