aboutsummaryrefslogtreecommitdiff
path: root/modutils/modutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'modutils/modutils.c')
-rw-r--r--modutils/modutils.c2
1 files changed, 1 insertions, 1 deletions
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)
123#endif 123#endif
124 124
125 /* Use the 2.6 way */ 125 /* Use the 2.6 way */
126 image = (char *) xmalloc_open_zipped_read_close(filename, &len); 126 image = xmalloc_open_zipped_read_close(filename, &len);
127 if (image) { 127 if (image) {
128 if (init_module(image, len, options) != 0) 128 if (init_module(image, len, options) != 0)
129 rc = errno; 129 rc = errno;