Changes in uspace/app/hbench/env.c [5e801dc:8d2289c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hbench/env.c
r5e801dc r8d2289c 52 52 } 53 53 54 static size_t param_key_hash( constvoid *key)54 static size_t param_key_hash(void *key) 55 55 { 56 c onst char *key_str = key;56 char *key_str = key; 57 57 return str_size(key_str); 58 58 } 59 59 60 static bool param_key_equal( constvoid *key, const ht_link_t *item)60 static bool param_key_equal(void *key, const ht_link_t *item) 61 61 { 62 62 param_t *param = hash_table_get_inst(item, param_t, link); 63 c onst char *key_str = key;63 char *key_str = key; 64 64 65 65 return str_cmp(param->key, key_str) == 0;
Note:
See TracChangeset
for help on using the changeset viewer.