xen: spelling fix

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Acked-by: David Woodhouse <dwmw@amazon.co.uk>
This commit is contained in:
Michael Tokarev 2023-08-23 21:58:15 +03:00
parent 42fe74998c
commit 54abe918bc
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ char *xenstore_read_str(const char *base, const char *node)
str = qemu_xen_xs_read(xenstore, 0, abspath, &len);
if (str != NULL) {
/* move to qemu-allocated memory to make sure
* callers can savely g_free() stuff. */
* callers can safely g_free() stuff. */
ret = g_strdup(str);
free(str);
}