openbsd-ports/games/micropolis/patches/patch-src_tk_tkoption_c
2017-05-09 13:01:42 +00:00

22 lines
749 B
Plaintext

$OpenBSD: patch-src_tk_tkoption_c,v 1.2 2017/05/09 13:01:42 espie Exp $
Index: src/tk/tkoption.c
--- src/tk/tkoption.c.orig
+++ src/tk/tkoption.c
@@ -21,6 +21,7 @@ static char rcsid[] = "$Header: /user6/ouster/wish/RCS
#include "tkconfig.h"
#include "tkint.h"
+#include <unistd.h>
/*
* The option database is stored as one tree for each main window.
@@ -872,7 +873,7 @@ ReadOptionFile(interp, tkwin, fileName, priority)
#ifdef MSDOS
if (read(fileId, buffer, (int) statBuf.st_size) < 0) {
#else
- if (read(fileId, buffer, (int) statBuf.st_size) != statBuf.st_size) {
+ if (read(fileId, buffer, statBuf.st_size) != statBuf.st_size) {
#endif
Tcl_AppendResult(interp, "error reading file \"", fileName, "\"",
(char *) NULL);