diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-16 09:25:02 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-16 09:25:02 +0100 |
commit | 3d037dbe86665b59c6bb5d71f3d58558a5848d38 (patch) | |
tree | 648e1252c1cf6f9637ffc93c994d41dc206454c8 /test | |
parent | 54a229b3864fe7867da69ef7427877094a256f1c (diff) | |
download | libuca-3d037dbe86665b59c6bb5d71f3d58558a5848d38.tar.gz libuca-3d037dbe86665b59c6bb5d71f3d58558a5848d38.tar.bz2 libuca-3d037dbe86665b59c6bb5d71f3d58558a5848d38.tar.xz libuca-3d037dbe86665b59c6bb5d71f3d58558a5848d38.zip |
Add soft MJSON dependency to load configuration/calibration data
Diffstat (limited to 'test')
-rw-r--r-- | test/control.c | 2 | ||||
-rw-r--r-- | test/enum.c | 2 | ||||
-rw-r--r-- | test/grab.c | 2 |
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; |