From: Ben Pfaff Date: Thu, 26 Sep 2013 04:26:37 +0000 (-0700) Subject: ascii: Use correct arguments in call to msg_error(). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da5dd1a396f05dbf068fe131d844316a6d6016f3;p=pspp ascii: Use correct arguments in call to msg_error(). --- diff --git a/src/output/ascii.c b/src/output/ascii.c index 8f69dfd883..27b39e34e5 100644 --- a/src/output/ascii.c +++ b/src/output/ascii.c @@ -384,8 +384,7 @@ ascii_flush (struct output_driver *driver) ascii_close_page (a); if (fn_close (a->file_name, a->file) != 0) - msg_error (ME, errno, _("ascii: closing output file `%s'"), - a->file_name); + msg_error (errno, _("ascii: closing output file `%s'"), a->file_name); a->file = NULL; } }