diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2006-04-18 06:54:15 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2006-04-18 06:54:15 +0000 |
commit | 42d5aaca4bb1ed92f88ca77423960620c20ba4f2 (patch) | |
tree | 3396e6ad0ff8b76ba2fec0ef7ca6081c0869f6b7 /usr.bin | |
parent | e13c952f5b7c07c0bb64905e20b87fe72eb17d1a (diff) |
Add () to function names to make it more clear what is happening
Diffstat (limited to 'usr.bin')
-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 462b07274f3..b4e7cb92375 100644 --- a/usr.bin/xlint/lint1/err.c +++ b/usr.bin/xlint/lint1/err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: err.c,v 1.22 2006/04/18 04:10:05 cloder Exp $ */ +/* $OpenBSD: err.c,v 1.23 2006/04/18 06:54:14 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.22 2006/04/18 04:10:05 cloder Exp $"; +static char rcsid[] = "$OpenBSD: err.c,v 1.23 2006/04/18 06:54:14 cloder Exp $"; #endif /* number of errors found */ @@ -367,7 +367,7 @@ const char *msgs[] = { "right shift of %d-bit quantity by %d bits", /* 310 */ "case ranges are illegal in ANSI C", /* 311 */ "suspicious operator for sizeof: %s", /* 312 */ - "conversion of %s return value from '%s' to '%s'", /* 313 */ + "conversion of %s() return value from '%s' to '%s'", /* 313 */ "hexadecimal float constants are illegal in traditional C", /* 314 */ }; |