@@ -46,7 +46,7 @@ void DynamicColumn_done(DynamicColumn* this) {
4646typedef struct {
4747 const char * name ;
4848 const DynamicColumn * data ;
49- unsigned int key ;
49+ ht_key_t key ;
5050} DynamicIterator ;
5151
5252static void DynamicColumn_compare (ht_key_t key , void * value , void * data ) {
@@ -58,7 +58,7 @@ static void DynamicColumn_compare(ht_key_t key, void* value, void* data) {
5858 }
5959}
6060
61- const DynamicColumn * DynamicColumn_search (Hashtable * dynamics , const char * name , unsigned int * key ) {
61+ const DynamicColumn * DynamicColumn_search (Hashtable * dynamics , const char * name , ht_key_t * key ) {
6262 DynamicIterator iter = { .key = 0 , .data = NULL , .name = name };
6363 if (dynamics )
6464 Hashtable_foreach (dynamics , DynamicColumn_compare , & iter );
@@ -67,10 +67,10 @@ const DynamicColumn* DynamicColumn_search(Hashtable* dynamics, const char* name,
6767 return iter .data ;
6868}
6969
70- const DynamicColumn * DynamicColumn_lookup (Hashtable * dynamics , unsigned int key ) {
70+ const DynamicColumn * DynamicColumn_lookup (Hashtable * dynamics , ht_key_t key ) {
7171 return (const DynamicColumn * ) Hashtable_get (dynamics , key );
7272}
7373
74- bool DynamicColumn_writeField (const Process * proc , RichString * str , unsigned int key ) {
74+ bool DynamicColumn_writeField (const Process * proc , RichString * str , ht_key_t key ) {
7575 return Platform_dynamicColumnWriteField (proc , str , key );
7676}
0 commit comments