From fc66892abdd0934b6cb81571882f46a21488337a Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 6 Nov 2008 02:32:31 +0000 Subject: *: remove superfluous casts. no code changes --- modutils/modutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modutils/modutils.c') diff --git a/modutils/modutils.c b/modutils/modutils.c index 10b49c901..0d7d72d8b 100644 --- a/modutils/modutils.c +++ b/modutils/modutils.c @@ -123,7 +123,7 @@ int FAST_FUNC bb_init_module(const char *filename, const char *options) #endif /* Use the 2.6 way */ - image = (char *) xmalloc_open_zipped_read_close(filename, &len); + image = xmalloc_open_zipped_read_close(filename, &len); if (image) { if (init_module(image, len, options) != 0) rc = errno; -- cgit v1.2.3-55-g6feb