summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-01-07 17:56:06 -0800
committerKeith Packard <keithp@keithp.com>2011-01-07 17:56:06 -0800
commitedd22ee49adf60c35f2fe6ba97c111b7ad4131c2 (patch)
tree5743f3bfb0b6c1b94abe372c6fb467b52b1a8ec4
parent1cc08af4f4a1ff61fc0deca3bdd95e8a5ca8ec5c (diff)
altos: report flight log offsets in hex block numbers instead of bytes
makes them compatible with the 'e' command. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--src/ao_log.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ao_log.c b/src/ao_log.c
index 47f24f01..f319834a 100644
--- a/src/ao_log.c
+++ b/src/ao_log.c
@@ -328,8 +328,10 @@ ao_log_list(void) __reentrant
{
flight = ao_log_flight(slot);
if (flight)
- printf ("flight %d start %ld end %ld\n",
- flight, ao_log_pos(slot), ao_log_pos(slot+1));
+ printf ("flight %d start %x end %x\n",
+ flight,
+ (uint16_t) (ao_log_pos(slot) >> 8),
+ (uint16_t) (ao_log_pos(slot+1) >> 8));
}
printf ("done\n");
}