summaryrefslogtreecommitdiff
path: root/Build/source/utils/m-tx/mtx-src-PATCHES/patch-02-malloc
blob: d1ba9181f0fb9db33736d4364e9c9af55931bed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- mtx-0.61.orig/multfile.c	Thu Dec 17 04:17:40 2015
+++ mtx-0.61/multfile.c	Thu Dec 17 09:03:39 2015
@@ -60,7 +60,7 @@
     printf("===! Ignoring recursive include of file %s\n", filename);
     return;
   }
-  newnode = malloc(sizeof(filenode));
+  newnode = Malloc(sizeof(filenode));
   newnode->actualfile = NULL;
   strcpy(newnode->name, filename);
   newnode->prev = current;