Use the proper format to print handles in handle_table_dump.

This commit is contained in:
Alexandre Julliard 2005-09-27 09:36:54 +00:00
parent 2eaff5074f
commit 0ec183cfe3
1 changed files with 2 additions and 2 deletions

View File

@ -127,8 +127,8 @@ static void handle_table_dump( struct object *obj, int verbose )
for (i = 0; i <= table->last; i++, entry++)
{
if (!entry->ptr) continue;
fprintf( stderr, "%9u: %p %08x ",
(unsigned int)index_to_handle(i), entry->ptr, entry->access );
fprintf( stderr, " %p: %p %08x ",
index_to_handle(i), entry->ptr, entry->access );
entry->ptr->ops->dump( entry->ptr, 0 );
}
}