ABORT_NOW() with no arg is strictly equivalent to abort_with_line(__LINE__)
so let's do it explicitly, not only it clarifies the code, but it
also reduces the size of the developed macros, which does count,
considering the number of BUG_ON() in the code.
if (_details & (DBG_DET_FAT_FATL|DBG_DET_FAT_WARN)) \
ha_backtrace_to_stderr(!!(_details & DBG_DET_FAT_FATL)); \
if (_details & DBG_DET_FAT_FATL) \
- ABORT_NOW(); \
+ abort_with_line(__LINE__); \
} \
}
if (details & (DBG_DET_FAT_FATL|DBG_DET_FAT_WARN)) \
ha_backtrace_to_stderr(!!(details & DBG_DET_FAT_FATL)); \
if (details & DBG_DET_FAT_FATL) \
- ABORT_NOW(); \
+ abort_with_line(__LINE__); \
} \
}