summaryrefslogtreecommitdiff
path: root/games/scramble/files/patch-src-perm.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/scramble/files/patch-src-perm.c')
-rw-r--r--games/scramble/files/patch-src-perm.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/games/scramble/files/patch-src-perm.c b/games/scramble/files/patch-src-perm.c
deleted file mode 100644
index 18d88ac83412..000000000000
--- a/games/scramble/files/patch-src-perm.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/perm.c.orig Sun Mar 27 03:45:59 2005
-+++ src/perm.c Thu Nov 10 05:23:00 2005
-@@ -149,11 +149,11 @@
- ****************************************************/
- static void resize()
- {
-+ struct node ** old_table = dictionary;
- unsigned int a;
- size_t old_size = sizeOfTable, i;
- sizeOfTable *= 2;
- numOfEntries = 0;
-- struct node ** old_table = dictionary;
-
- dictionary = (struct node **)malloc(sizeof(struct node *) * sizeOfTable);
- if(!dictionary) {