diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-02-23 10:26:25 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-02-23 10:26:25 +0100 |
commit | aa6ebf67fa2601a5fc087423be3ad40d742e1cd3 (patch) | |
tree | 0df321692158c1a34ab99dadbf38d72d75237063 /test/test.c | |
parent | 9d29847ed1c2c3a7689151852ec957f789320685 (diff) | |
download | libuca-aa6ebf67fa2601a5fc087423be3ad40d742e1cd3.tar.gz libuca-aa6ebf67fa2601a5fc087423be3ad40d742e1cd3.tar.bz2 libuca-aa6ebf67fa2601a5fc087423be3ad40d742e1cd3.tar.xz libuca-aa6ebf67fa2601a5fc087423be3ad40d742e1cd3.zip |
Set camera name (so we have at least some kind of feedback which camera is used)
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c index 7e29a88..87e1b21 100644 --- a/test/test.c +++ b/test/test.c @@ -14,6 +14,9 @@ int main(int argc, char *argv[]) uca->cam_set_dimensions(uca, &width, &height); + if (uca->camera_name != NULL) + printf("Camera name: %s\n", uca->camera_name); + uca_destroy(uca); return 0; } |