2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>

* probe.c (compile_rx_or_error): Silence ARI warning about missing
	 gettext function on `error'.
This commit is contained in:
Sergio Durigan Junior 2012-04-28 04:52:33 +00:00
parent 0fefef5932
commit 72d59e0d89
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
* probe.c (compile_rx_or_error): Silence ARI warning about missing
gettext function on `error'.
2012-04-27 Doug Evans <dje@google.com>
* dwarf2read.c (dwarf2_read_index): Don't use index if symbol table

View File

@ -270,7 +270,7 @@ compile_rx_or_error (regex_t *pattern, const char *rx, const char *message)
char *err = get_regcomp_error (code, pattern);
make_cleanup (xfree, err);
error ("%s: %s", message, err);
error (("%s: %s"), message, err);
}
}