summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--yavta.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/yavta.c b/yavta.c
index 49f10c3..ba94bfa 100644
--- a/yavta.c
+++ b/yavta.c
@@ -1440,8 +1440,8 @@ static void video_query_menu(struct device *dev,
printf(" %u: %.32s%s\n", menu.index, menu.name,
menu.index == value ? " (*)" : "");
else
- printf(" %u: %" PRId64 "%s\n", menu.index,
- (int64_t)menu.value,
+ printf(" %u: %" PRId64 " (0x%" PRIx64 ")%s\n", menu.index,
+ (int64_t)menu.value, (int64_t)menu.value,
menu.index == value ? " (*)" : "");
};
}