1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Fix warnings with conversion of uuid.

More cleanup of uuid casting / structures is needed but for now just
cast like the rest of the code.
This commit is contained in:
Dave Wysochanski 2010-05-19 12:12:47 +00:00
parent 0a6ddb393f
commit 8f4a9e6a3e

View File

@ -103,13 +103,13 @@ const char *lvm_errmsg(lvm_t libh)
const char *lvm_vgname_from_pvid(lvm_t libh, const char *pvid)
{
struct cmd_context *cmd = (struct cmd_context *)libh;
char uuid[64] __attribute((aligned(8)));
struct id id;
if (!id_read_format(uuid, pvid)) {
if (!id_read_format(&id, pvid)) {
log_error(INTERNAL_ERROR "Unable to convert uuid");
return NULL;
}
return find_vgname_from_pvid(cmd, uuid);
return find_vgname_from_pvid(cmd, (char *)id.uuid);
}
const char *lvm_vgname_from_device(lvm_t libh, const char *device)