From 4aaed6f322750d7b7a7825351c64d544bc31a9dc Mon Sep 17 00:00:00 2001 From: phyto Date: Thu, 15 Aug 2019 06:31:19 +0200 Subject: [PATCH] minor change --- v4l2/v4l2_pr_structs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v4l2/v4l2_pr_structs.c b/v4l2/v4l2_pr_structs.c index 83d44e8..bbc1e1f 100644 --- a/v4l2/v4l2_pr_structs.c +++ b/v4l2/v4l2_pr_structs.c @@ -287,7 +287,7 @@ void pr_ctrl_id(uint32_t id) if (verbosity>1) fprintf(FP, "%08x : ", id); -fprintf(FP, "%x %03x %04x", (id>>28)&0xf, +fprintf(FP, "%x %03lx %04x", (id>>28)&0xf, V4L2_CTRL_ID2CLASS(id)>>16, id&0xffff); }