From 1cf9a080d039805428accd93c2d6977ddd3fc61a Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Mon, 3 Mar 2014 11:37:29 +0100 Subject: [PATCH] correct argc --- tests/test_args_to_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_args_to_config.c b/tests/test_args_to_config.c index 8a58d33..4dd9228 100644 --- a/tests/test_args_to_config.c +++ b/tests/test_args_to_config.c @@ -601,9 +601,9 @@ static void _test_ndef2_with_neo_beta(void) const const char *argv[] = { "unittest", "-2", "-nhttps://my.yubico.com/neo/", - NULL + NULL }; - int argc = 2; + int argc = 3; int rc = _test_config(cfg, st, argc, argv); assert(rc == 0); -- 2.39.5