summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/control.c2
-rw-r--r--test/enum.c2
-rw-r--r--test/grab.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/control.c b/test/control.c
index 6024c08..98daffd 100644
--- a/test/control.c
+++ b/test/control.c
@@ -274,7 +274,7 @@ void value_cell_data_func(GtkTreeViewColumn *column, GtkCellRenderer *cell, GtkT
int main(int argc, char *argv[])
{
- struct uca_t *uca = uca_init();
+ struct uca_t *uca = uca_init(NULL);
if (uca == NULL) {
g_print("Couldn't initialize frame grabber and/or cameras\n");
return 1;
diff --git a/test/enum.c b/test/enum.c
index 1164399..88f226e 100644
--- a/test/enum.c
+++ b/test/enum.c
@@ -21,7 +21,7 @@ void print_level(int depth)
int main(int argc, char *argv[])
{
- struct uca_t *uca = uca_init();
+ struct uca_t *uca = uca_init(NULL);
if (uca == NULL) {
printf("Couldn't find a camera\n");
return 1;
diff --git a/test/grab.c b/test/grab.c
index 6f646c7..2994689 100644
--- a/test/grab.c
+++ b/test/grab.c
@@ -6,7 +6,7 @@
int main(int argc, char *argv[])
{
- struct uca_t *uca = uca_init();
+ struct uca_t *uca = uca_init(NULL);
if (uca == NULL) {
printf("Couldn't find a camera\n");
return 1;