Skip to content

Commit 28b2bb0

Browse files
Yang Lirichardweinberger
authored andcommitted
um: remove unneeded semicolon
while(){}, semicolon do not need to be appended. Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2237 Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Signed-off-by: Richard Weinberger <richard@nod.at>
1 parent a0a9ad9 commit 28b2bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/um/drivers/virtio_uml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ static irqreturn_t vu_req_read_message(struct virtio_uml_device *vu_dev,
412412
if (msg.msg.header.flags & VHOST_USER_FLAG_NEED_REPLY)
413413
vhost_user_reply(vu_dev, &msg.msg, response);
414414
irq_rc = IRQ_HANDLED;
415-
};
415+
}
416416
/* mask EAGAIN as we try non-blocking read until socket is empty */
417417
vu_dev->recv_rc = (rc == -EAGAIN) ? 0 : rc;
418418
return irq_rc;

0 commit comments

Comments
 (0)