From: Jeremy Kerr Date: Mon, 15 Dec 2008 06:45:46 +0000 (+1100) Subject: Remove const from print_device_remove X-Git-Tag: v1.0.0~948 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=898665e37e7e373f9a54ce288debbe365b28b60b Remove const from print_device_remove ..we can add consts where suitable later. Signed-off-by: Jeremy Kerr --- diff --git a/ui/test/pb-test.c b/ui/test/pb-test.c index 0d27f6c..fdca45c 100644 --- a/ui/test/pb-test.c +++ b/ui/test/pb-test.c @@ -29,7 +29,7 @@ static int print_device_add(struct device *device) return 0; } -static void print_device_remove(const char *dev_id) +static void print_device_remove(char *dev_id) { printf("removed device:\n"); printf("\tid: %s\n", dev_id);