Commit 86c9e64b 86c9e64b185a5b4092a8404aea8a9210fda271aa by Sergey Poznyakoff

Tiny fix

* include/mailutils/debug.h (MU_ASSERT): Prefix local variable name
with two underscores to diminish the probability of shadowing.
1 parent 6e1a268c
......@@ -87,11 +87,11 @@ int mu_debug_get_iterator (mu_iterator_t *piterator, int skipunset);
#define MU_ASSERT(expr) \
do \
{ \
int rc = expr; \
if (rc) \
int __rc = expr; \
if (__rc) \
{ \
mu_error ("%s:%d: " #expr " failed: %s", \
__FILE__, __LINE__, mu_strerror (rc)); \
__FILE__, __LINE__, mu_strerror (__rc)); \
abort (); \
} \
} \
......