This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: media-ctl: Add fall through comment to fix Coverity warning Author: Laurent Pinchart <[email protected]> Date: Tue Jun 3 11:55:42 2014 +0200 The -f case falls through the -V case during option parsing. This is desired but result in a missing break statement warning from Coverity. Fix it by adding a fall through comment. Reported-by: Coverity Scan Signed-off-by: Laurent Pinchart <[email protected]> utils/media-ctl/options.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=eb9c4050a2d8787fa2367047624ee9d1b16500aa diff --git a/utils/media-ctl/options.c b/utils/media-ctl/options.c index 90d9316..fc49323 100644 --- a/utils/media-ctl/options.c +++ b/utils/media-ctl/options.c @@ -122,6 +122,7 @@ int parse_cmdline(int argc, char **argv) case 'f': fprintf(stderr, "Warning: the -f option is deprecated " "and has been replaced by -V.\n"); + /* fall through */ case 'V': media_opts.formats = optarg; break; _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
