diff options
| author | Bill Fumerola <billf@FreeBSD.org> | 2000-07-06 05:46:37 +0000 |
|---|---|---|
| committer | Bill Fumerola <billf@FreeBSD.org> | 2000-07-06 05:46:37 +0000 |
| commit | 18c8a61a476743fd2e2b960d6854ce28f131f09c (patch) | |
| tree | dad28b32fd41b4d8c3274403afc0bdd730dbd86a | |
| parent | 03b59f2038ca42a91bf096323bcb88f4a6dd4ed1 (diff) | |
Notes
| -rw-r--r-- | games/fortune/strfile/strfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/fortune/strfile/strfile.c b/games/fortune/strfile/strfile.c index 0dda04095612..764835bfd78c 100644 --- a/games/fortune/strfile/strfile.c +++ b/games/fortune/strfile/strfile.c @@ -401,8 +401,8 @@ const void *s1, *s2; # define SET_N(nf,ch) (nf = (ch == '\n')) # define IS_END(ch,nf) (ch == EOF || (ch == (unsigned char) Delimch && nf)) - p1 = (const STR *)s1; - p2 = (const STR *)s2; + p1 = (const STR *) s1; + p2 = (const STR *) s2; c1 = (unsigned char) p1->first; c2 = (unsigned char) p2->first; |
