btrfs-progs: kerncompat: pass exact condition value from ASSERT

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2017-01-24 13:17:25 +01:00
parent be5e0b230c
commit eb6e3d6518
1 changed files with 2 additions and 2 deletions

View File

@ -299,13 +299,13 @@ static inline int IS_ERR_OR_NULL(const void *ptr)
static inline void assert_trace(const char *assertion, const char *filename,
const char *func, unsigned line, long val)
{
if (!val)
if (val)
return;
warning_trace(assertion, filename, func, line, val);
abort();
exit(1);
}
#define ASSERT(c) assert_trace(#c, __FILE__, __func__, __LINE__, (long)!(c))
#define ASSERT(c) assert_trace(#c, __FILE__, __func__, __LINE__, (long)(c))
#else
#define ASSERT(c) assert(c)
#endif