Ignore:
Timestamp:
Oct 25, 2006, 12:41:23 AM (18 years ago)
Author:
Bruno Cornec
Message:

mindi-busybox now uses busybox 1.2.2 (Thanks Rob for that last update and good lucck for your future projects).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi-busybox/modutils/lsmod.c

    r821 r902  
    9494
    9595    module_names = xmalloc(bufsize = 256);
    96     if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize,
    97                 &nmod)) {
     96    if (my_query_module(NULL, QM_MODULES, &module_names, &bufsize, &nmod)) {
    9897        bb_perror_msg_and_die("QM_MODULES");
    9998    }
     
    112111            bb_perror_msg_and_die("module %s: QM_INFO", mn);
    113112        }
    114         if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
     113        if (my_query_module(mn, QM_REFS, &deps, &depsize, &count)) {
    115114            if (errno == ENOENT) {
    116115                /* The module was removed out from underneath us. */
Note: See TracChangeset for help on using the changeset viewer.