summaryrefslogtreecommitdiffstats
path: root/release/libdisk/chunk.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/libdisk/chunk.c')
-rw-r--r--release/libdisk/chunk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/libdisk/chunk.c b/release/libdisk/chunk.c
index a286cb1..e81c646 100644
--- a/release/libdisk/chunk.c
+++ b/release/libdisk/chunk.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id$
+ * $Id: chunk.c,v 1.2 1995/04/29 01:55:19 phk Exp $
*
*/
@@ -228,8 +228,8 @@ Print_Chunk(struct chunk *c1,int offset)
if(!c1) return;
for(i=0;i<offset;i++) putchar('>');
for(;i<10;i++) putchar(' ');
- printf("%10lu %10lu %10lu %-8s %d %-8s %d %lx\n",
- c1->offset, c1->size, c1->end, c1->name,
+ printf("%p %10lu %10lu %10lu %-8s %d %-8s %d %lx\n",
+ c1, c1->offset, c1->size, c1->end, c1->name,
c1->type, chunk_n[c1->type],c1->subtype,c1->flags);
Print_Chunk(c1->part,offset + 2);
Print_Chunk(c1->next,offset);
OpenPOWER on IntegriCloud