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);