summaryrefslogtreecommitdiff
path: root/editors/bvi/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--editors/bvi/files/patch-ab11
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/bvi/files/patch-ab b/editors/bvi/files/patch-ab
new file mode 100644
index 000000000000..2503c09c8149
--- /dev/null
+++ b/editors/bvi/files/patch-ab
@@ -0,0 +1,11 @@
+--- io.c.orig Tue Nov 2 04:44:10 1999
++++ io.c Fri Nov 26 18:06:58 1999
+@@ -119,7 +119,7 @@
+ } else if (S_ISBLK(buf.st_mode)) {
+ filemode = BLOCK_SPECIAL;
+ } else if (S_ISREG(buf.st_mode)) {
+- if ((unsigned long)buf.st_size > (unsigned long)SIZE_T_MAX) {
++ if (buf.st_size > SIZE_T_MAX) {
+ move(maxy, 0);
+ endwin();
+ printf("File too large\n");