From 6ec61ab9cb23254a0f91ebac4cac7d6a0258bfb1 Mon Sep 17 00:00:00 2001 From: Dmitry Kasatkin Date: Fri, 2 May 2014 18:43:45 +0300 Subject: [PATCH] Remove unused 'x' parameter '-x' option was removed a while ago, but 'x' was not removed from getopt_long() parameter. Remove it. Signed-off-by: Dmitry Kasatkin --- src/evmctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evmctl.c b/src/evmctl.c index 8219d58..3cd072e 100644 --- a/src/evmctl.c +++ b/src/evmctl.c @@ -1704,7 +1704,7 @@ int main(int argc, char *argv[]) g_argc = argc; while (1) { - c = getopt_long(argc, argv, "hvnsda:p:fu::xk:t:r", opts, &lind); + c = getopt_long(argc, argv, "hvnsda:p:fu::k:t:r", opts, &lind); if (c == -1) break;