commit 5e6461ed6eb89f379ab3b824a1a3bcbc296c3481 parent e7db2affaac02d4d96c8a945e797abb9b97a51fb Author: Brian Swetland <swetland@frotz.net> Date: Fri, 21 Jun 2013 02:17:51 -0700 fix error message Diffstat:
M | common/savepng.cc | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/savepng.cc b/common/savepng.cc @@ -72,7 +72,7 @@ close_and_exit: fclose(fp); exit: if (status) - fprintf(stderr,"failed to load '%s'\n", fn); + fprintf(stderr,"failed to save '%s'\n", fn); return status; }