From 9088b328b51e685d424fd21817e8aab456d6ab24 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Thu, 10 Mar 2011 17:46:39 +0100 Subject: Fix all warnings issued by -Wall --- src/cameras/pf.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/cameras/pf.c') diff --git a/src/cameras/pf.c b/src/cameras/pf.c index a39fd3d..c199576 100644 --- a/src/cameras/pf.c +++ b/src/cameras/pf.c @@ -55,11 +55,6 @@ static struct uca_pf_map uca_to_pf[] = { { -1, NULL } }; -static uint32_t uca_pf_acquire_image(struct uca_camera_t *cam, void *buffer) -{ - return UCA_NO_ERROR; -} - static uint32_t uca_pf_set_property(struct uca_camera_t *cam, enum uca_property_ids property, void *data) { struct uca_grabber_t *grabber = cam->grabber; @@ -128,7 +123,6 @@ static uint32_t uca_pf_set_property(struct uca_camera_t *cam, enum uca_property_ static uint32_t uca_pf_get_property(struct uca_camera_t *cam, enum uca_property_ids property, void *data) { - struct uca_grabber_t *grabber = cam->grabber; TOKEN t; /* You gotta love developers who name types capitalized... */ PFValue value; @@ -160,6 +154,9 @@ static uint32_t uca_pf_get_property(struct uca_camera_t *cam, enum uca_property_ case PF_MODE: set_void(data, uint32_t, (uint32_t) value.value.i); break; + + default: + break; } return UCA_NO_ERROR; } -- cgit v1.2.3