diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-06 02:32:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-06 02:32:31 +0000 |
commit | fc66892abdd0934b6cb81571882f46a21488337a (patch) | |
tree | 506c5dbbcf94632dfe7bdc64dd4c97752a6a51ac /console-tools | |
parent | 35a064b67fc1954b95be06499a514a45c9f2e814 (diff) | |
download | busybox-w32-fc66892abdd0934b6cb81571882f46a21488337a.tar.gz busybox-w32-fc66892abdd0934b6cb81571882f46a21488337a.tar.bz2 busybox-w32-fc66892abdd0934b6cb81571882f46a21488337a.zip |
*: remove superfluous casts. no code changes
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/loadfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c index 8caeb3c4c..c6a3a4cd8 100644 --- a/console-tools/loadfont.c +++ b/console-tools/loadfont.c | |||
@@ -197,7 +197,7 @@ int loadfont_main(int argc UNUSED_PARAM, char **argv) | |||
197 | * just read the entire file. | 197 | * just read the entire file. |
198 | */ | 198 | */ |
199 | len = 32*1024; // can't be larger | 199 | len = 32*1024; // can't be larger |
200 | psfhdr = (struct psf_header *) xmalloc_read(STDIN_FILENO, &len); | 200 | psfhdr = xmalloc_read(STDIN_FILENO, &len); |
201 | // xmalloc_open_zipped_read_close(filename, &len); | 201 | // xmalloc_open_zipped_read_close(filename, &len); |
202 | if (!psfhdr) | 202 | if (!psfhdr) |
203 | bb_perror_msg_and_die("error reading input font"); | 203 | bb_perror_msg_and_die("error reading input font"); |
@@ -282,7 +282,7 @@ int setfont_main(int argc UNUSED_PARAM, char **argv) | |||
282 | } | 282 | } |
283 | // load font | 283 | // load font |
284 | len = 32*1024; // can't be larger | 284 | len = 32*1024; // can't be larger |
285 | psfhdr = (struct psf_header *) xmalloc_open_zipped_read_close(*argv, &len); | 285 | psfhdr = xmalloc_open_zipped_read_close(*argv, &len); |
286 | if (!psfhdr) | 286 | if (!psfhdr) |
287 | bb_simple_perror_msg_and_die(*argv); | 287 | bb_simple_perror_msg_and_die(*argv); |
288 | do_load(fd, psfhdr, len); | 288 | do_load(fd, psfhdr, len); |