
3 May
2016
3 May
'16
6:53 a.m.
On Tue, May 03, 2016 at 12:47:24 +0200, Ján Tomko wrote:
We do not need to propagate the exact return values and the only possible ones are 0 and -1 anyway.
Remove the temporary variable and use the usual pattern:
if (f() < 0) return -1; --- src/qemu/qemu_domain_address.c | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-)
ACK