Remove unused 'x' parameter
authorDmitry Kasatkin <d.kasatkin@samsung.com>
Fri, 2 May 2014 15:43:45 +0000 (18:43 +0300)
committerDmitry Kasatkin <d.kasatkin@samsung.com>
Fri, 2 May 2014 15:43:45 +0000 (18:43 +0300)
'-x' option was removed a while ago, but 'x' was not removed
from getopt_long() parameter. Remove it.

Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
src/evmctl.c

index 8219d58..3cd072e 100644 (file)
@@ -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;