ascii: Use correct arguments in call to msg_error().
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 26 Sep 2013 04:26:37 +0000 (21:26 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 26 Sep 2013 04:27:22 +0000 (21:27 -0700)
src/output/ascii.c

index 8f69dfd883e99be0cb630b098beee3cd813fdc51..27b39e34e53e13fe216dda0e6e295340ec53b209 100644 (file)
@@ -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;
     }
 }