From 2b42cdd35ccd83c52e9df257efdfcda040d170d9 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Wed, 21 Jan 2009 16:27:01 -0800 Subject: Make client ops constant Make the discover_client_ops args read-only. Signed-off-by: Geoff Levand Signed-off-by: Jeremy Kerr --- ui/test/pb-test.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ui/test') diff --git a/ui/test/pb-test.c b/ui/test/pb-test.c index b6ff627..551c9b0 100644 --- a/ui/test/pb-test.c +++ b/ui/test/pb-test.c @@ -3,7 +3,7 @@ #include "ui/common/discover-client.h" -static int print_device_add(struct device *device, +static int print_device_add(const struct device *device, void __attribute__((unused)) *arg) { struct boot_option *opt; @@ -28,7 +28,8 @@ static int print_device_add(struct device *device, return 0; } -static void print_device_remove(char *dev_id, void __attribute__((unused)) *arg) +static void print_device_remove(const char *dev_id, + void __attribute__((unused)) *arg) { printf("removed device:\n"); printf("\tid: %s\n", dev_id); -- cgit v1.2.1