Commit 2b657558 authored by Dominik Charousset's avatar Dominik Charousset

Fix bitwise-instead-of-logical warning

parent c163d716
...@@ -160,7 +160,7 @@ struct fixture { ...@@ -160,7 +160,7 @@ struct fixture {
} }
void exec_loop() { void exec_loop() {
while (exec_one(client_side) | exec_one(server_side)) while (exec_one(client_side) || exec_one(server_side))
; // nop ; // nop
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment