[libvirt] [libvirt-glib] Don't assign const char * to non-const

Christophe Fergeau cfergeau at redhat.com
Mon Feb 6 11:55:37 UTC 2012


This causes a gcc warning.
---
 libvirt-gobject/libvirt-gobject-storage-pool.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libvirt-gobject/libvirt-gobject-storage-pool.c b/libvirt-gobject/libvirt-gobject-storage-pool.c
index db496f3..5a4b4bc 100644
--- a/libvirt-gobject/libvirt-gobject-storage-pool.c
+++ b/libvirt-gobject/libvirt-gobject-storage-pool.c
@@ -548,7 +548,7 @@ GVirStorageVol *gvir_storage_pool_create_volume
     }
 
     GVirStorageVol *volume;
-    char *name;
+    const char *name;
 
     volume = GVIR_STORAGE_VOL(g_object_new(GVIR_TYPE_STORAGE_VOL,
                                            "handle", handle,
-- 
1.7.7.6




More information about the libvir-list mailing list