progs: Fix a number of format-related errors.
[u/mdw/catacomb] / progs / catcrypt.c
index 6e0db1d..f4d10c9 100644 (file)
@@ -206,7 +206,7 @@ static int encrypt(int argc, char *argv[])
     ofp = stdout;
   else if ((ofp = fopen(of, eo->wmode)) == 0) {
     die(EXIT_FAILURE, "couldn't open file `%s' for output: %s",
-       ofp, strerror(errno));
+       of, strerror(errno));
   }
 
   dstr_reset(&d);
@@ -506,7 +506,7 @@ static int decrypt(int argc, char *argv[])
     if ((ofp = fopen(of, "wb")) == 0) {
       if (f & f_progress) fprogress_done(&ff);
       die(EXIT_FAILURE, "couldn't open file `%s' for output: %s",
-         ofp, strerror(errno));
+         of, strerror(errno));
     }
     rfp = ofp;
   } else if ((rfp = tmpfile()) == 0) {