diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-08 14:38:16 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-08 14:38:16 +0200 |
commit | b3dbedeec78a55802565a3824ab52188e8b9bd4d (patch) | |
tree | 7529d8a8ce0a65ed94195631787c4cab6279709a /tools/perf-overhead.c | |
parent | d58bbe683873d043f50c8261f4588d7941e9cb8c (diff) | |
download | uca-b3dbedeec78a55802565a3824ab52188e8b9bd4d.tar.gz uca-b3dbedeec78a55802565a3824ab52188e8b9bd4d.tar.bz2 uca-b3dbedeec78a55802565a3824ab52188e8b9bd4d.tar.xz uca-b3dbedeec78a55802565a3824ab52188e8b9bd4d.zip |
Generate introspection files
Unfortunately, the gir tools recognize anything with $PREFIX_new_$SUFFIX as some
kind of constructor. This means that we have to rename
uca_plugin_manager_new_camera() to uca_plugin_manager_get_camera().
Diffstat (limited to 'tools/perf-overhead.c')
-rw-r--r-- | tools/perf-overhead.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf-overhead.c b/tools/perf-overhead.c index f8bdcbd..6735e6f 100644 --- a/tools/perf-overhead.c +++ b/tools/perf-overhead.c @@ -163,7 +163,7 @@ main (int argc, char *argv[]) } manager = uca_plugin_manager_new (); - camera = uca_plugin_manager_new_camera (manager, argv[1], &error); + camera = uca_plugin_manager_get_camera (manager, argv[1], &error); if (camera == NULL) { g_print ("Error during initialization: %s\n", error->message); |