mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
Remove unused argument for nbd_client()
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
cb93bbdd7d
commit
0a4eb864e3
3 changed files with 4 additions and 4 deletions
4
nbd.c
4
nbd.c
|
@ -393,7 +393,7 @@ int nbd_disconnect(int fd)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int nbd_client(int fd, int csock)
|
||||
int nbd_client(int fd)
|
||||
{
|
||||
int ret;
|
||||
int serrno;
|
||||
|
@ -427,7 +427,7 @@ int nbd_disconnect(int fd)
|
|||
return -1;
|
||||
}
|
||||
|
||||
int nbd_client(int fd, int csock)
|
||||
int nbd_client(int fd)
|
||||
{
|
||||
errno = ENOTSUP;
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue