Browse Source

Corrected error messages

ceriel 34 years ago
parent
commit
2a6b538c9b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      util/led/error.c

+ 1 - 1
util/led/error.c

@@ -70,7 +70,7 @@ diag(tail, format, a1, a2, a3, a4)
 	else if (archname)
 		fprintf(stderr, "%s: ", archname);
 	else if (modulname)
-		fprintf(stderr, "%.14s: ", modulname);
+		fprintf(stderr, "%s: ", modulname);
 	fprintf(stderr, format, a1, a2, a3, a4);
 	if (tail) fprintf(stderr, " (%s)\n", tail);
 	else putc('\n', stderr);