commit | be84cd4ef66f8956eb4c7ff0542fd1ba823a70e7 | [log] [tgz] |
---|---|---|
author | Matt Kraai <kraai@debian.org> | Wed Jul 12 17:02:35 2000 +0000 |
committer | Matt Kraai <kraai@debian.org> | Wed Jul 12 17:02:35 2000 +0000 |
tree | 088bc5b6e06d693ad8ca3eba078c0f3a8e302a24 | |
parent | e58771e73c0d8589a458ede4088f5ba70eff917b [diff] [blame] |
Always report the applet name when doing error reporting.
diff --git a/pwd.c b/pwd.c index 87553b3..f0c923b 100644 --- a/pwd.c +++ b/pwd.c
@@ -31,7 +31,7 @@ char buf[BUFSIZ + 1]; if (getcwd(buf, sizeof(buf)) == NULL) - fatalError("pwd: %s\n", strerror(errno)); + fatalError("%s\n", strerror(errno)); printf("%s\n", buf); return(TRUE);