mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
12 lines
131 B
Plaintext
12 lines
131 B
Plaintext
|
@@
|
||
|
expression * e;
|
||
|
@@
|
||
|
|
||
|
(
|
||
|
- tt_assert(e != NULL)
|
||
|
+ tt_ptr_op(e, OP_NE, NULL)
|
||
|
|
|
||
|
- tt_assert(e == NULL)
|
||
|
+ tt_ptr_op(e, OP_EQ, NULL)
|
||
|
)
|