in src/Marshal.c [15:29]
void TpmFail(
#ifndef NO_FAIL_TRACE
const char *function,
int line,
#endif
int code
)
{
(void)code;
#ifndef NO_FAIL_TRACE
(void)function;
(void)line;
#endif
assert(code != code);
}