X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilclist.h;h=1cd197700eea7cf9076fcab1855d0bbdfda55c25;hp=50213491f0b361239d015a5cd08606752499b777;hb=40f8443d8d3a6577336ee66d18e04d9ac4d956bb;hpb=6210937137137fe4019e808686dd1fcf99360af6 diff --git a/lib/silcutil/silclist.h b/lib/silcutil/silclist.h index 50213491..1cd19770 100644 --- a/lib/silcutil/silclist.h +++ b/lib/silcutil/silclist.h @@ -45,8 +45,8 @@ typedef struct { void *head; /* Start of the list */ void *tail; /* End of the list */ void *current; /* Current pointer in list */ - unsigned int next_offset : 16; /* Offset to 'next' pointer */ - unsigned int prev_offset : 16; /* Offset to 'prev' pointer */ + SilcUInt16 next_offset; /* Offset to 'next' pointer */ + SilcUInt16 prev_offset; /* Offset to 'prev' pointer */ unsigned int prev_set : 1; /* Set if 'prev' exists */ unsigned int end_set : 1; /* Set if silc_list_end was called */ unsigned int count : 30; /* Number of entries in the list */