diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2006-04-18 04:10:06 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2006-04-18 04:10:06 +0000 |
commit | db5b37d243ea5b59d2c3bb3cf24d1ffc8f8b2673 (patch) | |
tree | d7496e43ffb3f2d083320bae1aa4198c1c30c171 /usr.bin/xlint/lint1/err.c | |
parent | 85414c5fc324296d0813ae0d3cbb73ddc8cf9931 (diff) |
For prototype argument conversions, include both "from" and "to" types.
Diffstat (limited to 'usr.bin/xlint/lint1/err.c')
-rw-r--r-- | usr.bin/xlint/lint1/err.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xlint/lint1/err.c b/usr.bin/xlint/lint1/err.c index 619887af43d..462b07274f3 100644 --- a/usr.bin/xlint/lint1/err.c +++ b/usr.bin/xlint/lint1/err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: err.c,v 1.21 2006/04/18 03:59:46 cloder Exp $ */ +/* $OpenBSD: err.c,v 1.22 2006/04/18 04:10:05 cloder Exp $ */ /* $NetBSD: err.c,v 1.8 1995/10/02 17:37:00 jpo Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: err.c,v 1.21 2006/04/18 03:59:46 cloder Exp $"; +static char rcsid[] = "$OpenBSD: err.c,v 1.22 2006/04/18 04:10:05 cloder Exp $"; #endif /* number of errors found */ @@ -313,7 +313,7 @@ const char *msgs[] = { "unterminated comment", /* 256 */ "extra characters in lint comment", /* 257 */ "unterminated string constant", /* 258 */ - "%s arg #%d: converted to '%s'", /* 259 */ + "%s arg #%d: converted from '%s' to '%s'", /* 259 */ "previous declaration of %s", /* 260 */ "previous definition of %s", /* 261 */ "\\\" inside character constants undefined in traditional C", /* 262 */ |