Skip to content

Commit

Permalink
ctl: remove return statement from void function
Browse files Browse the repository at this point in the history
(cherry picked from commit 16e6bdf)
  • Loading branch information
sjthomason authored and miconda committed Jul 5, 2016
1 parent aea83a0 commit c5d8095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ctl/binrpc_run.c
Expand Up @@ -486,7 +486,7 @@ static void rpc_fault(struct binrpc_ctx* ctx, int code, char* fmt, ...)
va_end(ap);

len++; /* vnsprintf doesn't include the terminating 0 */
return _rpc_fault(ctx, code, buf, len);
_rpc_fault(ctx, code, buf, len);
}

/* Prepare the error reply without sending out the message */
Expand Down

0 comments on commit c5d8095

Please sign in to comment.