From: Fam Zheng Date: Tue, 12 Jul 2016 06:48:33 +0000 (+0800) Subject: util: Fix MIN_NON_ZERO X-Git-Tag: v2.6.1~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6ece2c6f37926a994bc564a9e55ef3be6016d8f;p=thirdparty%2Fqemu.git util: Fix MIN_NON_ZERO MIN_NON_ZERO(1, 0) is evaluated to 0. Rewrite the macro to fix it. Reported-by: Miroslav Rezanina Signed-off-by: Fam Zheng Message-Id: <1468306113-847-1-git-send-email-famz@redhat.com> Reviewed-by: Eric Blake Signed-off-by: Paolo Bonzini (cherry picked from commit d27ba624aa1dfe5c07cc01200d95967ffce905d9) Signed-off-by: Michael Roth --- diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h index 783270f1321..94a16034ede 100644 --- a/include/qemu/osdep.h +++ b/include/qemu/osdep.h @@ -149,7 +149,8 @@ extern int daemon(int, int); /* Minimum function that returns zero only iff both values are zero. * Intended for use with unsigned values only. */ #ifndef MIN_NON_ZERO -#define MIN_NON_ZERO(a, b) (((a) != 0 && (a) < (b)) ? (a) : (b)) +#define MIN_NON_ZERO(a, b) ((a) == 0 ? (b) : \ + ((b) == 0 ? (a) : (MIN(a, b)))) #endif /* Round number down to multiple */