Use the proper format to print handles in handle_table_dump.
diff --git a/server/handle.c b/server/handle.c
index bf68885..a5b286b 100644
--- a/server/handle.c
+++ b/server/handle.c
@@ -127,8 +127,8 @@
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 );
}
}