mirror of https://github.com/xemu-project/xemu.git
util/oslib-posix: Fix superfluous trailing semicolon
Signed-off-by: Zhao Liu <zhao1.liu@intel.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
eed52398f5
commit
083c4e71cf
|
@ -263,7 +263,7 @@ int qemu_socketpair(int domain, int type, int protocol, int sv[2])
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
ret = socketpair(domain, type, protocol, sv);;
|
ret = socketpair(domain, type, protocol, sv);
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
qemu_set_cloexec(sv[0]);
|
qemu_set_cloexec(sv[0]);
|
||||||
qemu_set_cloexec(sv[1]);
|
qemu_set_cloexec(sv[1]);
|
||||||
|
|
Loading…
Reference in New Issue