From: Zhao Liu <zhao1.liu@intel.com>
To: "Michael Tokarev" <mjt@tls.msk.ru>,
"Laurent Vivier" <laurent@vivier.eu>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org,
Zhao Liu <zhao1.liu@intel.com>
Subject: [PATCH 3/4] util/oslib-posix: Fix superfluous trailing semicolon
Date: Thu, 4 Jul 2024 16:47:58 +0800 [thread overview]
Message-ID: <20240704084759.1824420-4-zhao1.liu@intel.com> (raw)
In-Reply-To: <20240704084759.1824420-1-zhao1.liu@intel.com>
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
util/oslib-posix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/oslib-posix.c b/util/oslib-posix.c
index e76441695bdc..b090fe0eed0d 100644
--- a/util/oslib-posix.c
+++ b/util/oslib-posix.c
@@ -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]);
--
2.34.1
next prev parent reply other threads:[~2024-07-04 8:33 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-04 8:47 [PATCH 0/4] trivial: Fix superfluous trailing semicolon Zhao Liu
2024-07-04 8:47 ` [PATCH 1/4] accel/kvm/kvm-all: " Zhao Liu
2024-07-04 9:35 ` Peter Maydell
2024-07-04 9:48 ` Alex Bennée
2024-07-04 8:47 ` [PATCH 2/4] hw/i386/x86: " Zhao Liu
2024-07-04 9:36 ` Peter Maydell
2024-07-04 8:47 ` Zhao Liu [this message]
2024-07-04 9:35 ` [PATCH 3/4] util/oslib-posix: " Peter Maydell
2024-07-04 9:48 ` Alex Bennée
2024-07-04 8:47 ` [PATCH 4/4] target/hexagon/imported/mmvec: " Zhao Liu
2024-07-04 9:36 ` Peter Maydell
2024-07-04 9:48 ` Alex Bennée
2024-07-05 21:50 ` Brian Cain
2024-07-15 9:59 ` Michael Tokarev
2024-07-15 17:42 ` Brian Cain
2024-07-15 10:00 ` [PATCH 0/4] trivial: " Michael Tokarev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240704084759.1824420-4-zhao1.liu@intel.com \
--to=zhao1.liu@intel.com \
--cc=laurent@vivier.eu \
--cc=mjt@tls.msk.ru \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).