mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b1e23d9d9b
such as never including unistd.h and using close() on a FILE stream.
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
--- lib/kmpglib/lib/id/tag.cpp.orig Sun Jan 23 17:04:33 2000
|
|
+++ lib/kmpglib/lib/id/tag.cpp Sun Jan 23 17:04:54 2000
|
|
@@ -86,7 +86,7 @@
|
|
}
|
|
|
|
if (fseek(file, -128, SEEK_END) < 0) {
|
|
- close(file);
|
|
+ fclose(file);
|
|
perror("fseek");
|
|
initTagVars();
|
|
return(0);
|