From PR 7988 by Joseph Myers <jsm28@cam.ac.uk>: use the symbolic

name SEEK_SET for values which end up as the third argument of
fseek(), rather than a hard-coded 0.
This commit is contained in:
hubertf 1999-07-14 17:23:53 +00:00
parent 76139748e2
commit c1f52f97cd

View File

@ -1,4 +1,4 @@
/* $NetBSD: bog.c,v 1.9 1998/08/30 09:19:36 veego Exp $ */ /* $NetBSD: bog.c,v 1.10 1999/07/14 17:23:53 hubertf Exp $ */
/*- /*-
* Copyright (c) 1993 * Copyright (c) 1993
@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1993\n\
#if 0 #if 0
static char sccsid[] = "@(#)bog.c 8.2 (Berkeley) 5/4/95"; static char sccsid[] = "@(#)bog.c 8.2 (Berkeley) 5/4/95";
#else #else
__RCSID("$NetBSD: bog.c,v 1.9 1998/08/30 09:19:36 veego Exp $"); __RCSID("$NetBSD: bog.c,v 1.10 1999/07/14 17:23:53 hubertf Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -501,7 +501,7 @@ validword(word)
char *q, *w; char *q, *w;
j = word[0] - 'a'; j = word[0] - 'a';
if (dictseek(dictfp, dictindex[j].start, 0) < 0) { if (dictseek(dictfp, dictindex[j].start, SEEK_SET) < 0) {
(void) fprintf(stderr, "Seek error\n"); (void) fprintf(stderr, "Seek error\n");
cleanup(); cleanup();
exit(1); exit(1);
@ -541,7 +541,7 @@ checkdict()
prevch ='a'; prevch ='a';
qi = &wordpath[MAXWORDLEN + 1]; qi = &wordpath[MAXWORDLEN + 1];
(void) dictseek(dictfp, 0L, 0); (void) dictseek(dictfp, 0L, SEEK_SET);
while ((w = nextword(dictfp)) != NULL) { while ((w = nextword(dictfp)) != NULL) {
if (wordlen < minlength) if (wordlen < minlength)
continue; continue;
@ -568,7 +568,7 @@ checkdict()
*/ */
if (i != previndex + 1) { if (i != previndex + 1) {
if (dictseek(dictfp, if (dictseek(dictfp,
dictindex[i].start, 0) < 0) { dictindex[i].start, SEEK_SET) < 0) {
warnx("seek error in checkdict()"); warnx("seek error in checkdict()");
cleanup(); cleanup();
exit(1); exit(1);