Re: [Qemu-devel] [PULL 21/23] bsd-user: replace fprintf(stderr, ...) with error_report()

2014-06-02 Thread Michael Tokarev
02.06.2014 17:09, Markus Armbruster wrote: > Peter Maydell writes: [] >> because none of these bsd-user files include a header which >> gives a prototype for error_report. Also, these are just >> straightforward reporting of command line errors, and I >> think that, like the linux-user code, we sh

Re: [Qemu-devel] [PULL 21/23] bsd-user: replace fprintf(stderr, ...) with error_report()

2014-06-02 Thread Markus Armbruster
Peter Maydell writes: > On 26 May 2014 08:20, Michael Tokarev wrote: >> From: Le Tan >> >> Replace fprintf(stderr,...) with error_report() in files bsd-user/*. >> The trailing "\n"s of the @fmt argument have been removed >> because @fmt of error_report() should not contain newline. >> >> Signed

Re: [Qemu-devel] [PULL 21/23] bsd-user: replace fprintf(stderr, ...) with error_report()

2014-05-31 Thread Peter Maydell
On 26 May 2014 08:20, Michael Tokarev wrote: > From: Le Tan > > Replace fprintf(stderr,...) with error_report() in files bsd-user/*. > The trailing "\n"s of the @fmt argument have been removed > because @fmt of error_report() should not contain newline. > > Signed-off-by: Le Tan > Signed-off-by:

[Qemu-devel] [PULL 21/23] bsd-user: replace fprintf(stderr, ...) with error_report()

2014-05-26 Thread Michael Tokarev
From: Le Tan Replace fprintf(stderr,...) with error_report() in files bsd-user/*. The trailing "\n"s of the @fmt argument have been removed because @fmt of error_report() should not contain newline. Signed-off-by: Le Tan Signed-off-by: Michael Tokarev --- bsd-user/bsdload.c |2 +- bsd-use