Commit 59902e0e authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't return void returning function call

parent 82c77464
...@@ -835,8 +835,8 @@ vtx_scan(struct VSLQ *vslq, struct vtx *vtx) ...@@ -835,8 +835,8 @@ vtx_scan(struct VSLQ *vslq, struct vtx *vtx)
case SLT_End: case SLT_End:
vtx->flags |= VTX_F_END; vtx->flags |= VTX_F_END;
return (vtx_mark_complete(vslq, vtx)); vtx_mark_complete(vslq, vtx);
break;
default: default:
break; break;
} }
......
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