util/qemu-error: Rename error_print_loc() to be more generic
Rename the error_print_loc() function in preparation for using it to print warnings as well. Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <661b215695db878a0aef8401b506fb3da50e981a.1499866456.git.alistair.francis@xilinx.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
e79ea67a97
commit
beeb175c0d
@ -146,7 +146,7 @@ const char *error_get_progname(void)
|
|||||||
/*
|
/*
|
||||||
* Print current location to current monitor if we have one, else to stderr.
|
* Print current location to current monitor if we have one, else to stderr.
|
||||||
*/
|
*/
|
||||||
static void error_print_loc(void)
|
static void print_loc(void)
|
||||||
{
|
{
|
||||||
const char *sep = "";
|
const char *sep = "";
|
||||||
int i;
|
int i;
|
||||||
@ -197,7 +197,7 @@ void error_vreport(const char *fmt, va_list ap)
|
|||||||
g_free(timestr);
|
g_free(timestr);
|
||||||
}
|
}
|
||||||
|
|
||||||
error_print_loc();
|
print_loc();
|
||||||
error_vprintf(fmt, ap);
|
error_vprintf(fmt, ap);
|
||||||
error_printf("\n");
|
error_printf("\n");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user