diff options
Diffstat (limited to 'e2fsck/message.c')
-rw-r--r-- | e2fsck/message.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/e2fsck/message.c b/e2fsck/message.c index 3018cc00..529a486a 100644 --- a/e2fsck/message.c +++ b/e2fsck/message.c @@ -44,6 +44,7 @@ * the containing directory. * %s <str> miscellaneous string * %S backup superblock + * %X <num> hexadecimal format * * The following '@' expansions are supported: * @@ -378,6 +379,13 @@ static _INLINE_ void expand_percent_expression(ext2_filsys fs, char ch, case 's': printf("%s", ctx->str); break; + case 'X': +#ifdef EXT2_NO_64_TYPE + printf("0x%x", ctx->num); +#else + printf("0x%llx", ctx->num); +#endif + break; default: no_context: printf("%%%c", ch); |