From a7ae3fbb14fcb9581036beefb7bb0069c6f14298 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Wed, 29 Feb 2012 16:09:55 +0100 Subject: Use libpco 0.3 API --- test/enum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/enum.c') diff --git a/test/enum.c b/test/enum.c index 17b595f..75ca596 100644 --- a/test/enum.c +++ b/test/enum.c @@ -65,14 +65,14 @@ int main(int argc, char *argv[]) break; case uca_uint32t: if (uca_cam_get_property(cam, i, &uint32_value, 0) == UCA_NO_ERROR) { - printf("%i %s", uint32_value, uca_unit_map[prop->unit]); + printf("%u %s", uint32_value, uca_unit_map[prop->unit]); } else printf("n/a"); break; case uca_uint8t: if (uca_cam_get_property(cam, i, &uint8_value, 0) == UCA_NO_ERROR) { - printf("%i %s", uint8_value, uca_unit_map[prop->unit]); + printf("%u %s", uint8_value, uca_unit_map[prop->unit]); } else printf("n/a"); -- cgit v1.2.3