diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-16 08:58:55 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-16 08:58:55 +0100 |
commit | 54a229b3864fe7867da69ef7427877094a256f1c (patch) | |
tree | 44b314944e24f3ef522360d76255bbc21ea36e12 /test/grab.c | |
parent | 98511f7a77e7b37f9508b66298d99d7d1103e422 (diff) | |
download | libuca-54a229b3864fe7867da69ef7427877094a256f1c.tar.gz libuca-54a229b3864fe7867da69ef7427877094a256f1c.tar.bz2 libuca-54a229b3864fe7867da69ef7427877094a256f1c.tar.xz libuca-54a229b3864fe7867da69ef7427877094a256f1c.zip |
Pass target string size when calling uca_get_property
Diffstat (limited to 'test/grab.c')
-rw-r--r-- | test/grab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/grab.c b/test/grab.c index 5ae44f1..6f646c7 100644 --- a/test/grab.c +++ b/test/grab.c @@ -21,9 +21,9 @@ int main(int argc, char *argv[]) cam->set_property(cam, UCA_PROP_DELAY, &val); uint32_t width, height, bits; - cam->get_property(cam, UCA_PROP_WIDTH, &width); - cam->get_property(cam, UCA_PROP_HEIGHT, &height); - cam->get_property(cam, UCA_PROP_BITDEPTH, &bits); + cam->get_property(cam, UCA_PROP_WIDTH, &width, 0); + cam->get_property(cam, UCA_PROP_HEIGHT, &height, 0); + cam->get_property(cam, UCA_PROP_BITDEPTH, &bits, 0); uca_cam_alloc(cam, 10); |