use Realloc instead of realloc
diff --git a/exclude.c b/exclude.c
index ab01234..d25adb3 100644
--- a/exclude.c
+++ b/exclude.c
@@ -146,11 +146,7 @@
return;
}
- if (!*list) {
- *list = (struct exclude_struct **)malloc(sizeof(struct exclude_struct *)*2);
- } else {
- *list = (struct exclude_struct **)realloc(*list,sizeof(struct exclude_struct *)*(len+2));
- }
+ *list = (struct exclude_struct **)Realloc(*list,sizeof(struct exclude_struct *)*(len+2));
if (!*list || !((*list)[len] = make_exclude(pattern, include)))
out_of_memory("add_exclude");