[Qemu-devel] [PATCHv2 1/2] spice: use error_report to report errors

2012-02-24 Thread Christophe Fergeau
Error message reporting during spice startup wasn't consistent, it was done with fprintf(stderr, ) but sometimes the message didn't have a trailing \n. Using error_report make the intent of the message clearer and deal with the final \n for us. --- ui/spice-core.c | 22 +++--- 1

Re: [Qemu-devel] [PATCHv2 1/2] spice: use error_report to report errors

2012-02-24 Thread Gerd Hoffmann
On 02/24/12 18:13, Christophe Fergeau wrote: Error message reporting during spice startup wasn't consistent, it was done with fprintf(stderr, ) but sometimes the message didn't have a trailing \n. Using error_report make the intent of the message clearer and deal with the final \n for us.