Changeset a46da63 in mainline for ns/ns.c


Ignore:
Timestamp:
2006-06-16T20:50:51Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
153a209
Parents:
b34fab6
Message:

big code cleanup, compile with -Wall -Werror to enforce better coding
there is currently one warning that requires attention, please review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ns/ns.c

    rb34fab6 ra46da63  
    8282} hashed_service_t;
    8383
    84 int static ping_phone;
    85 
    8684static void *clockaddr = NULL;
    8785static void *klogaddr = NULL;
     
    107105        ipc_call_t call;
    108106        ipc_callid_t callid;
    109         char *as_area;
    110107       
    111         ipcarg_t retval, arg1, arg2;
     108        ipcarg_t retval;
    112109
    113110        if (!hash_table_create(&ns_hash_table, NS_HASH_TABLE_CHAINS, 3, &ns_hash_table_ops)) {
     
    150147                }
    151148                if (! (callid & IPC_CALLID_NOTIFICATION)) {
    152                         ipc_answer_fast(callid, retval, arg1, arg2);
     149                        ipc_answer_fast(callid, retval, 0, 0);
    153150                }
    154151        }
     
    258255        free(hash_table_get_instance(item, hashed_service_t, link));
    259256}
     257
    260258/**
    261259 * @}
Note: See TracChangeset for help on using the changeset viewer.