nmcli/trivial: consistently order the options in process_command_line()

Make the order of nmc_complete_strings() arguments consistent with the
multi-way conditional below. Doesn't have any effect, just ensures the
ommisions and mistakes are hopefully easier to spot.
This commit is contained in:
Lubomir Rintel 2022-04-05 13:43:27 +02:00
parent 2a0231469f
commit 438f52b459

View file

@ -761,15 +761,15 @@ process_command_line(NmCli *nmc, int argc, char **argv_orig)
if (argc == 1 && nmc->complete) {
nmc_complete_strings(argv[0],
"--overview",
"--terse",
"--pretty",
"--mode",
"--overview",
"--colors",
"--escape",
"--fields",
"--nocheck",
"--get-values",
"--nocheck",
"--wait",
"--version",
"--help");