diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-04-01 16:23:27 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-04-01 16:23:27 +0200 |
commit | b83e7a311580e9c0ed7bd58637b01c10d4b4f8a3 (patch) | |
tree | 03305140e9fb17885b83c25bfd91081119ece146 /bin/tools/grab.c | |
parent | fa3f523af9ac95945af59bdaa729d71d79327a76 (diff) | |
download | uca-b83e7a311580e9c0ed7bd58637b01c10d4b4f8a3.tar.gz uca-b83e7a311580e9c0ed7bd58637b01c10d4b4f8a3.tar.bz2 uca-b83e7a311580e9c0ed7bd58637b01c10d4b4f8a3.tar.xz uca-b83e7a311580e9c0ed7bd58637b01c10d4b4f8a3.zip |
cli: pass -p/--property assignment to constructor
Diffstat (limited to 'bin/tools/grab.c')
-rw-r--r-- | bin/tools/grab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/tools/grab.c b/bin/tools/grab.c index 9eaa48b..e7c6eff 100644 --- a/bin/tools/grab.c +++ b/bin/tools/grab.c @@ -240,7 +240,7 @@ main (int argc, char *argv[]) #endif manager = uca_plugin_manager_new (); - context = uca_option_context_new (manager); + context = uca_common_context_new (manager); g_option_context_add_main_entries (context, entries, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { @@ -258,7 +258,7 @@ main (int argc, char *argv[]) goto cleanup_manager; } - camera = uca_plugin_manager_get_camera (manager, argv[argc - 1], &error, NULL); + camera = uca_common_get_camera (manager, argv[argc - 1], &error); if (camera == NULL) { g_print ("Error during initialization: %s\n", error->message); |