*: remove superfluous casts. no code changes
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 6 Nov 2008 02:32:31 +0000 (02:32 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 6 Nov 2008 02:32:31 +0000 (02:32 -0000)
console-tools/loadfont.c
modutils/depmod.c
modutils/modutils.c

index 8caeb3c4cad0076f2871877631972fcd533e272b..c6a3a4cd8b1ec4b7d0308d178e26b7c66ab26ea4 100644 (file)
@@ -197,7 +197,7 @@ int loadfont_main(int argc UNUSED_PARAM, char **argv)
         * just read the entire file.
         */
        len = 32*1024; // can't be larger
-       psfhdr = (struct psf_header *) xmalloc_read(STDIN_FILENO, &len);
+       psfhdr = xmalloc_read(STDIN_FILENO, &len);
        // xmalloc_open_zipped_read_close(filename, &len);
        if (!psfhdr)
                bb_perror_msg_and_die("error reading input font");
@@ -282,7 +282,7 @@ int setfont_main(int argc UNUSED_PARAM, char **argv)
        }
        // load font
        len = 32*1024; // can't be larger
-       psfhdr = (struct psf_header *) xmalloc_open_zipped_read_close(*argv, &len);
+       psfhdr = xmalloc_open_zipped_read_close(*argv, &len);
        if (!psfhdr)
                bb_simple_perror_msg_and_die(*argv);
        do_load(fd, psfhdr, len);
index 5b9e9e8644f5f11cefd8ec0212ab797600050e6b..a4474d5e4a96a7ab7b4687fd8100c8dcece95b48 100644 (file)
@@ -50,7 +50,7 @@ static int FAST_FUNC parse_module(const char *fname, struct stat *sb,
        if (strrstr(fname, ".ko") == NULL)
                return TRUE;
 
-       image = (char *) xmalloc_open_zipped_read_close(fname, &len);
+       image = xmalloc_open_zipped_read_close(fname, &len);
        info = xzalloc(sizeof(module_info));
 
        info->next = *first;
index 10b49c901f1c667d715f52c1b200b289a8853fbc..0d7d72d8b330a89f393ec640232d8192a609f569 100644 (file)
@@ -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;