diff --git a/include/common/debug.h b/include/common/debug.h index df8552229..c6c154cde 100644 --- a/include/common/debug.h +++ b/include/common/debug.h @@ -59,7 +59,7 @@ do { \ if (unlikely(cond)) { \ const char msg[] = "\nFATAL: bug condition \"" #cond "\" matched at " file ":" #line "\n"; \ - (void)write(2, msg, strlen(msg)); \ + DISGUISE(write(2, msg, strlen(msg))); \ CRASH_NOW(); \ } \ } while (0)