summaryrefslogtreecommitdiff
path: root/Build/source/utils/m-tx/mtx-PATCHES/patch-02-malloc
blob: 178d04ee4839d92310439f2b04427af2bf4cf1ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff -ur mtx-0.62.orig/multfile.c mtx-0.62/multfile.c
--- mtx-0.62.orig/multfile.c	Tue Feb 09 05:52:29 2016
+++ mtx-0.62/multfile.c	Thu Feb 11 01:52:08 2016
@@ -61,7 +61,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;