summaryrefslogtreecommitdiffstats
path: root/test/grab.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/grab.c')
-rw-r--r--test/grab.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/grab.c b/test/grab.c
index ab3263f..6ade84a 100644
--- a/test/grab.c
+++ b/test/grab.c
@@ -54,8 +54,7 @@ int main(int argc, char *argv[])
int counter = 0;
while ((error == UCA_NO_ERROR) && (counter < 20)) {
- error = uca_cam_grab(cam, (char *) buffer, NULL);
- printf("error = 0x%x\n", error);
+ handle_error(uca_cam_grab(cam, (char *) buffer, NULL));
snprintf(filename, FILENAME_MAX, "frame-%08i.raw", counter++);
FILE *fp = fopen(filename, "wb");
fwrite(buffer, width*height, pixel_size, fp);