This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: keytable: fix compilation warning Author: Sean Young <[email protected]> Date: Wed Nov 7 12:00:24 2018 +0000 keytable.c: In function ‘parse_opt’: keytable.c:835:7: warning: ‘param’ may be used uninitialized in this function [-Wuninitialized] Signed-off-by: Sean Young <[email protected]> Acked-by: Sakari Ailus <[email protected]> (cherry picked from commit d2bf051b1a95a3ed0b0aa252816291800b3e6117) Signed-off-by: Gregor Jasny <[email protected]> utils/keytable/keytable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=5f8bd4e8c670959679a29bb1cc9efda4751840fd diff --git a/utils/keytable/keytable.c b/utils/keytable/keytable.c index 6fc22358624f..e15440deb1ca 100644 --- a/utils/keytable/keytable.c +++ b/utils/keytable/keytable.c @@ -832,7 +832,7 @@ static error_t parse_opt(int k, char *arg, struct argp_state *state) do { struct bpf_parameter *param; - if (!param) { + if (!p) { argp_error(state, _("Missing parameter name: %s"), arg); break; } _______________________________________________ linuxtv-commits mailing list [email protected] https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
