aboutsummaryrefslogtreecommitdiff
path: root/iothread.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2022-11-21 09:50:47 +0100
committerMarkus Armbruster <armbru@redhat.com>2022-12-14 16:19:35 +0100
commit05e385d2a96325c1f26b874f1b832237229b8c1f (patch)
tree3e17519074c633ebc1f2875b215677788e52e4ab /iothread.c
parent740d6c4eba8bb44ea00550ccc97a4c49945ecc3c (diff)
downloadqemu-05e385d2a96325c1f26b874f1b832237229b8c1f.zip
qemu-05e385d2a96325c1f26b874f1b832237229b8c1f.tar.gz
qemu-05e385d2a96325c1f26b874f1b832237229b8c1f.tar.bz2
error: Move ERRP_GUARD() to the beginning of the function
include/qapi/error.h advises to put ERRP_GUARD() right at the beginning of the function, because only then can it guard the whole function. Clean up the few spots disregarding the advice. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20221121085054.683122-4-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'iothread.c')
-rw-r--r--iothread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iothread.c b/iothread.c
index 529194a..3862a64 100644
--- a/iothread.c
+++ b/iothread.c
@@ -155,8 +155,8 @@ static void iothread_init_gcontext(IOThread *iothread)
static void iothread_set_aio_context_params(EventLoopBase *base, Error **errp)
{
- IOThread *iothread = IOTHREAD(base);
ERRP_GUARD();
+ IOThread *iothread = IOTHREAD(base);
if (!iothread->ctx) {
return;