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>
master
Alistair Francis 2017-07-12 06:57:31 -07:00 committed by Markus Armbruster
parent e79ea67a97
commit beeb175c0d
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ const char *error_get_progname(void)
/*
* 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 = "";
int i;
@ -197,7 +197,7 @@ void error_vreport(const char *fmt, va_list ap)
g_free(timestr);
}
error_print_loc();
print_loc();
error_vprintf(fmt, ap);
error_printf("\n");
}