repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
qcow2: Nicer variable names in qcow2_update_snapshot_refcount()
[qemu/ar7.git]
/
stubs
/
uuid.c
blob
a880de8d61d1c7fa3f63a2991bb9bca800f8ba68
1
#include
"qemu/osdep.h"
2
#include
"qemu-common.h"
3
#include
"qemu/uuid.h"
4
#include
"qmp-commands.h"
5
6
UuidInfo
*
qmp_query_uuid
(
Error
**
errp
)
7
{
8
UuidInfo
*
info
=
g_malloc0
(
sizeof
(*
info
));
9
10
info
->
UUID
=
g_strdup
(
UUID_NONE
);
11
return
info
;
12
}
13