From 558a726f839f5a668b01321c9409a48b8ab2ea60 Mon Sep 17 00:00:00 2001 From: Sakari Ailus Date: Sat, 26 May 2012 19:43:16 +0300 Subject: media-ctl: Compose print fixes The compose rectangles were printed incorrectly in my recent patch "Compose rectangle support for libv4l2subdev" without parenthesis. Fix this. Signed-off-by: Sakari Ailus Signed-off-by: Laurent Pinchart --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index af16818..d10094b 100644 --- a/src/main.c +++ b/src/main.c @@ -81,14 +81,14 @@ static void v4l2_subdev_print_format(struct media_entity *entity, V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS, which); if (ret == 0) - printf("\n\t\t compose.bounds:%u,%u/%ux%u", + printf("\n\t\t compose.bounds:(%u,%u)/%ux%u", rect.left, rect.top, rect.width, rect.height); ret = v4l2_subdev_get_selection(entity, &rect, pad, V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL, which); if (ret == 0) - printf("\n\t\t compose:%u,%u/%ux%u", + printf("\n\t\t compose:(%u,%u)/%ux%u", rect.left, rect.top, rect.width, rect.height); printf("]\n"); -- cgit v1.2.3