Fix order of arguments in error message
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 9 Feb 2020 09:15:21 +0000 (10:15 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 9 Feb 2020 09:15:21 +0000 (10:15 +0100)
src/language/data-io/trim.c

index 657d23aa0bfa464664f927a3887795debfc39700..d2384b901a4ec667171d165b1e060e3a091140f2 100644 (file)
@@ -117,7 +117,7 @@ parse_dict_rename (struct lexer *lexer, struct dictionary *dict,
          msg (SE, _("Number of variables on left side of `=' (%zu) does not "
                      "match number of variables on right side (%zu), in "
                      "parenthesized group %d of RENAME subcommand."),
-              n_newvars, n_oldvars, group);
+              n_oldvars, n_newvars, group);
          goto fail;
        }