* src/output.c (pack_vector): Use assert, not berror.

* src/main.c (berror): Remove, unused.
This commit is contained in:
Akim Demaille
2001-12-05 09:24:21 +00:00
parent 84b6f48351
commit 0fc1a97d9f
3 changed files with 8 additions and 16 deletions

View File

@@ -103,9 +103,6 @@
#include "reader.h"
#include "conflicts.h"
extern void berror PARAMS((const char *));
static int nvectors;
static int nentries;
@@ -980,8 +977,8 @@ pack_vector (int vector)
}
}
berror ("pack_vector");
return 0; /* JF keep lint happy */
assert (!"pack_vector");
return 0;
}