* 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");
}
// 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);
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;
#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;