Skip to content

Commit

Permalink
util/oslib-posix: Fix superfluous trailing semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Zhao Liu <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Reviewed-by: Alex Bennée <[email protected]>
Reviewed-by: Michael Tokarev <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
  • Loading branch information
trueptolemy authored and Michael Tokarev committed Jul 17, 2024
1 parent eed5239 commit 083c4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/oslib-posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ int qemu_socketpair(int domain, int type, int protocol, int sv[2])
return ret;
}
#endif
ret = socketpair(domain, type, protocol, sv);;
ret = socketpair(domain, type, protocol, sv);
if (ret == 0) {
qemu_set_cloexec(sv[0]);
qemu_set_cloexec(sv[1]);
Expand Down

0 comments on commit 083c4e7

Please sign in to comment.