Always report the applet name when doing error reporting.
diff --git a/tr.c b/tr.c
index 5a8116d..293bbce 100644
--- a/tr.c
+++ b/tr.c
@@ -189,7 +189,7 @@
 			complement(input);
 		if (argv[index] != NULL) {
 			if (*argv[index] == '\0')
-				fatalError("tr: STRING2 cannot be empty\n");
+				fatalError("STRING2 cannot be empty\n");
 			expand(argv[index], output);
 			map(input, output);
 		}