clientlist: reorder struct fields to remove alignment padding

This commit is contained in:
Heikki Hannikainen 2012-11-20 22:07:07 +02:00
parent 9575119bc3
commit ce826cb003
1 changed files with 1 additions and 1 deletions

View File

@ -50,8 +50,8 @@ struct clientlist_t {
int fd; /* File descriptor, can be used by another
thread to shut down a socket */
void *client_id; /* DO NOT REFERENCE - just used for an ID */
uint32_t hash; /* hash value */
void *client_id; /* DO NOT REFERENCE - just used for an ID */
};
/* hash buckets - serious overkill, but great for 40k clients */