On 7/13/20 11:04 AM, Yi Wang wrote: > From: Liao Pingfang <liao.pingf...@zte.com.cn> > > Remove the superfluous break, as there is a "return" before it. > > Signed-off-by: Liao Pingfang <liao.pingf...@zte.com.cn> > Signed-off-by: Yi Wang <wang.y...@zte.com.cn> > Reviewed-by: Philippe Mathieu-Daudé <f4...@amsat.org>
Hmm I never reviewed this patch, only the openrisc one: https://lists.gnu.org/archive/html/qemu-devel/2020-07/msg04078.html Something is wrong in your workflow, you are posting each patch as a new thread. You might be missing the --cc-cover option, see: https://wiki.qemu.org/Contribute/SubmitAPatch#Use_git_format-patch > --- > fsdev/virtfs-proxy-helper.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c > index de061a8..e68acc1 100644 > --- a/fsdev/virtfs-proxy-helper.c > +++ b/fsdev/virtfs-proxy-helper.c > @@ -825,7 +825,6 @@ static int process_reply(int sock, int type, > break; > default: > return -1; > - break; > } > return 0; > } >