diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2013-01-15 16:53:10 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-01-15 16:53:10 -0600 |
commit | 58a864dec23f9052a5379a3ce81566e065c14afa (patch) | |
tree | 8fc11aa19816f0089a0bb9e58346a1566c84c1e6 /include | |
parent | b9f84ac0fa81315bf4efa8db64f0705273b7499a (diff) | |
parent | ecbe251fa0eb4905c4a82c887e37057243b9fbad (diff) | |
download | qemu-58a864dec23f9052a5379a3ce81566e065c14afa.tar.gz qemu-58a864dec23f9052a5379a3ce81566e065c14afa.tar.bz2 qemu-58a864dec23f9052a5379a3ce81566e065c14afa.zip |
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
* stefanha/trivial-patches:
configure: try pkg-config for curses
qom: Make object_resolve_path_component() path argument const
Add libcacard/trace/generated-tracers.c to .gitignore
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qom/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qom/object.h b/include/qom/object.h index d43b289a40..1ef2f0edd4 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: |