Merge commit 'refs/top-bases/linux-configure-branch' into linux-configure-branch

This commit is contained in:
Brian Behlendorf 2010-08-04 09:45:03 -07:00
commit 04497a6064
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ extern void __assert(const char *, const char *, int);
char *__buf = alloca(256); \
(void) snprintf(__buf, 256, "%s %s %s (0x%llx %s 0x%llx)", \
#LEFT, #OP, #RIGHT, \
(u_longlong_t)(LEFT), #OP, (u_longlong_t)(RIGHT)); \
(u_longlong_t)((TYPE)(LEFT)), #OP, \
(u_longlong_t)((TYPE)(RIGHT))); \
__assert(__buf, __FILE__, __LINE__); \
} \
} while (0)