diff libmpcodecs/vf_screenshot.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 88d793e52bd9
children 67c256364220
line wrap: on
line diff
--- a/libmpcodecs/vf_screenshot.c	Tue Feb 17 10:41:13 2009 +0000
+++ b/libmpcodecs/vf_screenshot.c	Tue Feb 17 11:16:19 2009 +0000
@@ -2,7 +2,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#ifdef HAVE_MALLOC_H
+#if HAVE_MALLOC_H
 #include <malloc.h>
 #endif
 #include <string.h>