Commit 688a8376 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Revert "Kill one indentation"

This reverts commit eaac258d.

The benefits in terms of readability are uncertain and YMMV, but
compilers seem to find it harder to optimize too:

   cmpl   $0x0,-0x205c(%rbp)
   sete   %al
   movzbl %al,%eax
   or     %rax,%rdx

Before the change it would translate to just:

   or     $0x1,%rax
   mov    %rax,%rdx

Spotted by @fgsch
parent e6755a5d
......@@ -271,7 +271,8 @@ vbp_poke(struct vbp_target *vt)
if (tmo > 0)
i = poll(pfd, 1, tmo);
if (i == 0 || tmo <= 0) {
vt->err_recv |= (i == 0);
if (i == 0)
vt->err_recv |= 1;
VTCP_close(&s);
return;
}
......
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