diff options
author | Mike Frysinger <vapier@gentoo.org> | 2024-01-01 17:34:01 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-01 17:39:09 -0500 |
commit | 9ddac092a831d9eb4a53959764c2d13b12964a0c (patch) | |
tree | a9177cbf20722b0c81ee211beb50886309028322 /sim/ppc/table.c | |
parent | ef993dfa05f6a79a76ede0d0be00f7ac93d7c75c (diff) | |
download | binutils-9ddac092a831d9eb4a53959764c2d13b12964a0c.zip binutils-9ddac092a831d9eb4a53959764c2d13b12964a0c.tar.gz binutils-9ddac092a831d9eb4a53959764c2d13b12964a0c.tar.bz2 |
sim: ppc: rework igen error to match common
Switch to an ERROR macro and tweak the error signature to match the
common igen version in preparation for merging the two implementations.
Diffstat (limited to 'sim/ppc/table.c')
-rw-r--r-- | sim/ppc/table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/table.c b/sim/ppc/table.c index cb9a73a..0c5b6fc 100644 --- a/sim/ppc/table.c +++ b/sim/ppc/table.c @@ -98,7 +98,7 @@ table_push (table *root, /* free (dup_name); */ if (include->next == NULL) { - error ("Problem opening file `%s'\n", file_name); + ERROR ("Problem opening file `%s'\n", file_name); perror (file_name); exit (1); } |