Actually flip the order of the interpolated values

The previous commit was a no-op. Fix it.
This commit is contained in:
Kurtis Rader 2017-08-19 20:22:53 -07:00
parent e9b24327d0
commit 335f397277

View File

@ -122,8 +122,8 @@ static int check_for_mutually_exclusive_flags(argparse_cmd_opts_t &opts, io_stre
// testing easier.
if (flag1 > flag2) {
wcstring tmp(flag1);
flag2 = flag1;
flag1 = tmp;
flag1 = flag2;
flag2 = tmp;
}
streams.err.append_format(
_(L"%ls: Mutually exclusive flags '%ls' and `%ls` seen\n"),