diff libmpcodecs/vf.c @ 28594:df67d03dde3b

Convert HAVE_MALLOC_H into a 0/1 definition, fixes the warning: mem.c:32:5: warning: "HAVE_MALLOC_H" is not defined
author diego
date Tue, 17 Feb 2009 11:16:19 +0000
parents 134689b7b548
children 4cc1fbdaad5f
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Tue Feb 17 10:41:13 2009 +0000
+++ b/libmpcodecs/vf.c	Tue Feb 17 11:16:19 2009 +0000
@@ -3,7 +3,7 @@
 #include <string.h>
 
 #include "config.h"
-#ifdef HAVE_MALLOC_H
+#if HAVE_MALLOC_H
 #include <malloc.h>
 #endif