mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-19 02:29:31 -05:00
This replaces an if + ABORT_NOW() by BUG_ON(). It might change behavior, because BUG_ON will result in a no-op if not enabled.
7 lines
58 B
Text
7 lines
58 B
Text
@@
|
|
expression E;
|
|
@@
|
|
|
|
- if (E)
|
|
- ABORT_NOW();
|
|
+ BUG_ON(E);
|