diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2007-09-10 14:29:54 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2007-09-10 14:29:54 +0000 |
commit | 4bb6947b738392d059ccec81a601802f2a3f67e1 (patch) | |
tree | 6a47a9a7c15a9808ef0d3524f9dd977949038843 /usr.bin/rcs | |
parent | e617d3130f4ee9ff3df5781cfc30d5a8c8d9a52c (diff) |
Proper use of fseek/fseeko macros.
OK joris@, otto@
Diffstat (limited to 'usr.bin/rcs')
-rw-r--r-- | usr.bin/rcs/diff3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/rcs/diff3.c b/usr.bin/rcs/diff3.c index fbe113a8c23..d18231cab12 100644 --- a/usr.bin/rcs/diff3.c +++ b/usr.bin/rcs/diff3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff3.c,v 1.23 2007/07/03 00:56:23 ray Exp $ */ +/* $OpenBSD: diff3.c,v 1.24 2007/09/10 14:29:53 tobias Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. @@ -72,7 +72,7 @@ static const char copyright[] = #ifndef lint static const char rcsid[] = - "$OpenBSD: diff3.c,v 1.23 2007/07/03 00:56:23 ray Exp $"; + "$OpenBSD: diff3.c,v 1.24 2007/09/10 14:29:53 tobias Exp $"; #endif /* not lint */ #include <ctype.h> @@ -869,7 +869,7 @@ repos(int nchar) int i; for (i = 0; i < 2; i++) - (void)fseek(fp[i], (long)-nchar, 1); + (void)fseek(fp[i], (long)-nchar, SEEK_CUR); } /* @@ -903,7 +903,7 @@ edscript(int n) prange(&de[n].old); else diff_output("%da\n=======\n", de[n].old.to -1); - (void)fseek(fp[2], (long)de[n].new.from, 0); + (void)fseek(fp[2], (long)de[n].new.from, SEEK_SET); for (k = de[n].new.to-de[n].new.from; k > 0; k-= j) { j = k > BUFSIZ ? BUFSIZ : k; if (fread(block, 1, (size_t)j, |