summaryrefslogtreecommitdiffstats
path: root/include/qemu
diff options
context:
space:
mode:
authorFam Zheng2016-09-21 06:27:22 +0200
committerFam Zheng2016-09-23 05:42:52 +0200
commit9c5ce8db2e5c2769ed2fd3d91928dd1853b5ce7c (patch)
treec7fc6da1885972db475b47cbc169ebc8d7b058a6 /include/qemu
parentconfigure: Remove detection code for UUID (diff)
downloadqemu-9c5ce8db2e5c2769ed2fd3d91928dd1853b5ce7c.tar.gz
qemu-9c5ce8db2e5c2769ed2fd3d91928dd1853b5ce7c.tar.xz
qemu-9c5ce8db2e5c2769ed2fd3d91928dd1853b5ce7c.zip
vl: Switch qemu_uuid to QemuUUID
Update all qemu_uuid users as well, especially get rid of the duplicated low level g_strdup_printf, sscanf and snprintf calls with QEMU UUID API. Since qemu_uuid_parse is quite tangled with qemu_uuid, its switching to QemuUUID is done here too to keep everything in sync and avoid code churn. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Jeff Cody <jcody@redhat.com> Message-Id: <1474432046-325-10-git-send-email-famz@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r--include/qemu/uuid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/uuid.h b/include/qemu/uuid.h
index bc0601e65b..afe4840296 100644
--- a/include/qemu/uuid.h
+++ b/include/qemu/uuid.h
@@ -52,7 +52,7 @@ void qemu_uuid_unparse(const QemuUUID *uuid, char *out);
char *qemu_uuid_unparse_strdup(const QemuUUID *uuid);
-int qemu_uuid_parse(const char *str, uint8_t *uuid);
+int qemu_uuid_parse(const char *str, QemuUUID *uuid);
void qemu_uuid_bswap(QemuUUID *uuid);