Skip to content

Commit

Permalink
ctl: remove return statement from void function
Browse files Browse the repository at this point in the history
  • Loading branch information
sjthomason committed Jul 1, 2016
1 parent d90f3b8 commit 16e6bdf
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 16e6bdf

Please sign in to comment.