dbghelp: Fix pointer cast.

oldstable
Erik de Castro Lopo 2008-04-25 10:36:03 +10:00 committed by Alexandre Julliard
parent eba704b8bb
commit ab2424710f
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ void hash_table_iter_init(const struct hash_table* ht,
void* hash_table_iter_up(struct hash_table_iter* hti);
#define GET_ENTRY(__i, __t, __f) \
((__t*)((char*)(__i) - (unsigned int)(&((__t*)0)->__f)))
((__t*)((char*)(__i) - FIELD_OFFSET(__t,__f)))
extern unsigned dbghelp_options;