Changeset 1433ecda in mainline for uspace/srv/ns/task.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/task.c

    r47b2d7e3 r1433ecda  
    5858static size_t task_key_hash(void *key)
    5959{
    60         return *(task_id_t*)key;
     60        return *(task_id_t *)key;
    6161}
    6262
     
    7070{
    7171        hashed_task_t *ht = hash_table_get_inst(item, hashed_task_t, link);
    72         return ht->id == *(task_id_t*)key;
     72        return ht->id == *(task_id_t *)key;
    7373}
    7474
     
    101101static size_t p2i_key_hash(void *key)
    102102{
    103         sysarg_t in_phone_hash = *(sysarg_t*)key;
     103        sysarg_t in_phone_hash = *(sysarg_t *)key;
    104104        return in_phone_hash;
    105105}
     
    113113static bool p2i_key_equal(void *key, const ht_link_t *item)
    114114{
    115         sysarg_t in_phone_hash = *(sysarg_t*)key;
     115        sysarg_t in_phone_hash = *(sysarg_t *)key;
    116116        p2i_entry_t *entry = hash_table_get_inst(item, p2i_entry_t, link);
    117117
Note: See TracChangeset for help on using the changeset viewer.