From: Andreas Färber Date: Tue, 15 Jan 2013 01:55:10 +0000 (+0100) Subject: qom: Make object_resolve_path_component() path argument const X-Git-Tag: v1.4.0-rc0~179^2~1 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=3e84b4832180db2aa6187b6b971054bc3ca68be0;p=qemu.git qom: Make object_resolve_path_component() path argument const A usage with a hardcoded partial path such as object_resolve_path_component(obj, "foo") is totally valid but currently leads to a compilation error. Fix this. Signed-off-by: Andreas Färber Signed-off-by: Stefan Hajnoczi --- diff --git a/include/qom/object.h b/include/qom/object.h index d43b289a4..1ef2f0edd 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -900,7 +900,7 @@ Object *object_resolve_path_type(const char *path, const char *typename, * * Returns: The resolved object or NULL on path lookup failure. */ -Object *object_resolve_path_component(Object *parent, gchar *part); +Object *object_resolve_path_component(Object *parent, const gchar *part); /** * object_property_add_child: diff --git a/qom/object.c b/qom/object.c index 351b88c81..03e6f24d2 100644 --- a/qom/object.c +++ b/qom/object.c @@ -1017,7 +1017,7 @@ gchar *object_get_canonical_path(Object *obj) return newpath; } -Object *object_resolve_path_component(Object *parent, gchar *part) +Object *object_resolve_path_component(Object *parent, const gchar *part) { ObjectProperty *prop = object_property_find(parent, part, NULL); if (prop == NULL) {