summaryrefslogtreecommitdiffstats
path: root/super0.c
diff options
context:
space:
mode:
Diffstat (limited to 'super0.c')
-rw-r--r--super0.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/super0.c b/super0.c
index 49474d0..8bded15 100644
--- a/super0.c
+++ b/super0.c
@@ -141,8 +141,10 @@ static void examine_super0(void *sbv)
printf(" New Layout : %s\n", c?c:"-unknown-");
}
if (sb->level == 10) {
- printf(" New Layout : near=%d, far=%d\n",
- sb->new_layout&255, (sb->new_layout>>8)&255);
+ printf(" New Layout : near=%d, %s=%d\n",
+ sb->new_layout&255,
+ (sb->new_layout&0x10000)?"offset":"far",
+ (sb->new_layout>>8)&255);
}
}
if (sb->new_chunk != sb->chunk_size)
@@ -170,8 +172,10 @@ static void examine_super0(void *sbv)
printf(" Layout : %s\n", c?c:"-unknown-");
}
if (sb->level == 10) {
- printf(" Layout : near=%d, far=%d\n",
- sb->layout&255, (sb->layout>>8)&255);
+ printf(" Layout : near=%d, %s=%d\n",
+ sb->layout&255,
+ (sb->layout&0x10000)?"offset":"far",
+ (sb->layout>>8)&255);
}
switch(sb->level) {
case 0: