From: Martin Kletzander Date: Wed, 16 Apr 2025 08:04:34 +0000 (+0200) Subject: qemu_rdp: Fix a typo existance -> existence X-Git-Tag: v11.3.0-rc1~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5a73f75bc6cae4f466d0a6344d5b3277ac9c2f4;p=thirdparty%2Flibvirt.git qemu_rdp: Fix a typo existance -> existence Fixes: bd473480b443aa2561236dfd903535aa778d99a8 Signed-off-by: Martin Kletzander Reviewed-by: Jiri Denemark --- diff --git a/src/qemu/qemu_rdp.c b/src/qemu/qemu_rdp.c index 0c48b87e7b..919f5788bf 100644 --- a/src/qemu/qemu_rdp.c +++ b/src/qemu/qemu_rdp.c @@ -432,6 +432,6 @@ qemuRdpAvailable(const char *helper) g_autofree char *helperPath = NULL; /* This function was added corresponding to the first release of 'qemu-rdp' - * thus checking existance of the helper binary is sufficient. */ + * thus checking existence of the helper binary is sufficient. */ return !!(helperPath = virFindFileInPath(helper)); }