diff options
author | 2003-07-21 21:59:58 +0000 | |
---|---|---|
committer | 2003-07-21 21:59:58 +0000 | |
commit | 082b0f3d5cf6730e12a84d7c0be5df2f356e9fba (patch) | |
tree | 7a70355c11d327b61e9d2b4066e4196b45610b51 /usr.bin/diff/diff.c | |
parent | POSIX-compliant output when there are two paths w/ the same name but (diff) | |
download | wireguard-openbsd-082b0f3d5cf6730e12a84d7c0be5df2f356e9fba.tar.xz wireguard-openbsd-082b0f3d5cf6730e12a84d7c0be5df2f356e9fba.zip |
a little KNF
Diffstat (limited to 'usr.bin/diff/diff.c')
-rw-r--r-- | usr.bin/diff/diff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c index 7b762eb4932..91e81bb4a9a 100644 --- a/usr.bin/diff/diff.c +++ b/usr.bin/diff/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.29 2003/07/21 21:57:22 millert Exp $ */ +/* $OpenBSD: diff.c,v 1.30 2003/07/21 21:59:58 henning Exp $ */ /* * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -21,7 +21,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: diff.c,v 1.29 2003/07/21 21:57:22 millert Exp $"; +static const char rcsid[] = "$OpenBSD: diff.c,v 1.30 2003/07/21 21:59:58 henning Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -247,7 +247,7 @@ easprintf(char **ret, const char *fmt, ...) if (len == -1) err(2, NULL); - return(len); + return (len); } void |