Try to make a "type-punned pointer" warning go away for somebody on the

buildroot list.
This commit is contained in:
Rob Landley 2006-08-03 20:39:59 +00:00
parent 403777ffae
commit 6ced427a6d

View File

@ -93,8 +93,7 @@ int lsmod_main(int argc, char **argv)
size_t bufsize, depsize, nmod, count, i, j; size_t bufsize, depsize, nmod, count, i, j;
module_names = xmalloc(bufsize = 256); module_names = xmalloc(bufsize = 256);
if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize, if (my_query_module(NULL, QM_MODULES, &module_names, &bufsize, &nmod)) {
&nmod)) {
bb_perror_msg_and_die("QM_MODULES"); bb_perror_msg_and_die("QM_MODULES");
} }
@ -111,7 +110,7 @@ int lsmod_main(int argc, char **argv)
/* else choke */ /* else choke */
bb_perror_msg_and_die("module %s: QM_INFO", mn); bb_perror_msg_and_die("module %s: QM_INFO", mn);
} }
if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) { if (my_query_module(mn, QM_REFS, &deps, &depsize, &count)) {
if (errno == ENOENT) { if (errno == ENOENT) {
/* The module was removed out from underneath us. */ /* The module was removed out from underneath us. */
continue; continue;