summaryrefslogtreecommitdiff
path: root/games-misc/bsd-games/files/bsd-games-2.17-bg.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-misc/bsd-games/files/bsd-games-2.17-bg.patch
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-misc/bsd-games/files/bsd-games-2.17-bg.patch')
-rw-r--r--games-misc/bsd-games/files/bsd-games-2.17-bg.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/games-misc/bsd-games/files/bsd-games-2.17-bg.patch b/games-misc/bsd-games/files/bsd-games-2.17-bg.patch
deleted file mode 100644
index 07dc520b77e4..000000000000
--- a/games-misc/bsd-games/files/bsd-games-2.17-bg.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- backgammon/common_source/fancy.c.old 2007-05-16 20:16:46.000000000 +0200
-+++ backgammon/common_source/fancy.c 2007-05-16 20:19:00.000000000 +0200
-@@ -58,7 +58,7 @@
- int lUP; /* length of UP */
- int CO; /* number of columns */
- int LI; /* number of lines */
--int *linect; /* array of lengths of lines on screen (the
-+static int linect[25]; /* array of lengths of lines on screen (the
- * actual screen is not stored) */
-
- /* two letter codes */
-@@ -728,10 +728,5 @@
- lND = strlen(ND);
- if (LI < 24 || CO < 72 || !(CL && UP && ND))
- return (0);
-- linect = (int *) calloc(LI + 1, sizeof(int));
-- if (linect == NULL) {
-- write(2, "\r\nOut of memory!\r\n", 18);
-- getout(0);
-- }
- return (1);
- }