X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/3c16db0eba861da6bd649a1fecdf9845114a632e..39a9d9d85d0f2289d8c1257251311b7cf959c700:/uip/mhmisc.c diff --git a/uip/mhmisc.c b/uip/mhmisc.c index fddf284d..63ea15a1 100644 --- a/uip/mhmisc.c +++ b/uip/mhmisc.c @@ -151,7 +151,7 @@ losing_directory: if (!answer) goto losing_directory; if (!makedir (file)) { - advise (NULL, "unable to create directory %s", file); + inform("unable to create directory %s", file); goto losing_directory; } } @@ -250,7 +250,7 @@ content_error (char *what, CT ct, char *fmt, ...) errs = add (buffer, errs); } else { - advise (NULL, "%s", buffer); + inform("%s", buffer); } } @@ -260,7 +260,7 @@ flush_errors (void) { if (errs) { fflush (stdout); - fprintf (stderr, "%s", errs); + fputs(errs, stderr); free (errs); errs = NULL; }