mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-26 19:42:33 -06:00
remove double semicolons
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
7f303adc4f
commit
c7e775e4dd
7 changed files with 9 additions and 9 deletions
|
@ -248,7 +248,7 @@ static int send_fd(int sockfd, int fd)
|
|||
static int send_status(int sockfd, struct iovec *iovec, int status)
|
||||
{
|
||||
ProxyHeader header;
|
||||
int retval, msg_size;;
|
||||
int retval, msg_size;
|
||||
|
||||
if (status < 0) {
|
||||
header.type = T_ERROR;
|
||||
|
@ -381,7 +381,7 @@ static int send_response(int sock, struct iovec *iovec, int size)
|
|||
proxy_marshal(iovec, 0, "dd", header.type, header.size);
|
||||
retval = socket_write(sock, iovec->iov_base, header.size + PROXY_HDR_SZ);
|
||||
if (retval < 0) {
|
||||
return retval;;
|
||||
return retval;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue