Commit 0ec183cf authored by Alexandre Julliard's avatar Alexandre Julliard

Use the proper format to print handles in handle_table_dump.

parent 2eaff507
...@@ -127,8 +127,8 @@ static void handle_table_dump( struct object *obj, int verbose ) ...@@ -127,8 +127,8 @@ static void handle_table_dump( struct object *obj, int verbose )
for (i = 0; i <= table->last; i++, entry++) for (i = 0; i <= table->last; i++, entry++)
{ {
if (!entry->ptr) continue; if (!entry->ptr) continue;
fprintf( stderr, "%9u: %p %08x ", fprintf( stderr, " %p: %p %08x ",
(unsigned int)index_to_handle(i), entry->ptr, entry->access ); index_to_handle(i), entry->ptr, entry->access );
entry->ptr->ops->dump( entry->ptr, 0 ); entry->ptr->ops->dump( entry->ptr, 0 );
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment