mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 22:58:50 +01:00
11 lines
131 B
Text
11 lines
131 B
Text
@@
|
|
expression * e;
|
|
@@
|
|
|
|
(
|
|
- tt_assert(e != NULL)
|
|
+ tt_ptr_op(e, OP_NE, NULL)
|
|
|
|
|
- tt_assert(e == NULL)
|
|
+ tt_ptr_op(e, OP_EQ, NULL)
|
|
)
|