From 4c9733d70264685ae7de195d8cd4b229fab626dc Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 27 Nov 1990 09:39:52 +0000 Subject: [PATCH] Corrected error messages --- util/led/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/led/error.c b/util/led/error.c index 96e5421a..e525741d 100644 --- a/util/led/error.c +++ b/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);