mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Revert r228695. We use __func__ here as a format to distinguish between
abort and assert. It would be cleaner to use NULL or "" here, but gcc complains in both cases.
This commit is contained in:
parent
e194282943
commit
771a67330f
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ void pjdlog_abort(const char *func, const char *file, int line,
|
|||
#define PJDLOG_VERIFY(expr) do { \
|
||||
if (!(expr)) { \
|
||||
pjdlog_abort(__func__, __FILE__, __LINE__, #expr, \
|
||||
"%s", __func__); \
|
||||
__func__); \
|
||||
} \
|
||||
} while (0)
|
||||
#define PJDLOG_RVERIFY(expr, ...) do { \
|
||||
|
|
|
|||
Loading…
Reference in a new issue