From: John Darrington Date: Sun, 9 Feb 2020 09:15:21 +0000 (+0100) Subject: Fix order of arguments in error message X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=940770031151234eb947998ad79498a5ff827200;p=pspp Fix order of arguments in error message --- diff --git a/src/language/data-io/trim.c b/src/language/data-io/trim.c index 657d23aa0b..d2384b901a 100644 --- a/src/language/data-io/trim.c +++ b/src/language/data-io/trim.c @@ -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; }