summaryrefslogtreecommitdiffstats
path: root/boggle/mkindex/mkindex.c
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2021-05-02 12:50:43 +0000
committerCameron Katri <me@cameronkatri.com>2021-05-05 14:56:21 -0400
commit1c75ca2e2dc72d118edbb854455e602d70d80a52 (patch)
treea815eb983fa15e7c407095122e37acb90093be9a /boggle/mkindex/mkindex.c
parent2442661e769456700d67fac92056d18b3046633e (diff)
downloadbsdgames-darwin-1c75ca2e2dc72d118edbb854455e602d70d80a52.tar.gz
bsdgames-darwin-1c75ca2e2dc72d118edbb854455e602d70d80a52.tar.zst
bsdgames-darwin-1c75ca2e2dc72d118edbb854455e602d70d80a52.zip
games: remove trailing whitespace in *.c and *.h
Diffstat (limited to 'boggle/mkindex/mkindex.c')
-rw-r--r--boggle/mkindex/mkindex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/boggle/mkindex/mkindex.c b/boggle/mkindex/mkindex.c
index ddda2bd9..fad22644 100644
--- a/boggle/mkindex/mkindex.c
+++ b/boggle/mkindex/mkindex.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mkindex.c,v 1.11 2009/08/12 05:29:40 dholland Exp $ */
+/* $NetBSD: mkindex.c,v 1.12 2021/05/02 12:50:44 rillig Exp $ */
/*-
* Copyright (c) 1993
@@ -40,7 +40,7 @@ static char copyright[] = "@(#) Copyright (c) 1993\n\
static char sccsid[] = "@(#)mkindex.c 8.1 (Berkeley) 6/11/93";
#else
static char rcsid[] =
- "$NetBSD: mkindex.c,v 1.11 2009/08/12 05:29:40 dholland Exp $";
+ "$NetBSD: mkindex.c,v 1.12 2021/05/02 12:50:44 rillig Exp $";
#endif
#endif /* not lint */
@@ -112,7 +112,7 @@ nextword(FILE *fp, char *buffer, int *clen, int *rlen)
return (NULL);
p = buf + (*clen = pcount);
-
+
while ((ch = getc(fp)) != EOF && ch >= 'a')
*p++ = ch;
lastch = ch;