diff options
author | nexus <nexus@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-30 14:12:25 +0000 |
---|---|---|
committer | nexus <nexus@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-30 14:12:25 +0000 |
commit | b8d79e4b09975b8629691bd12b0fb923d598b410 (patch) | |
tree | 926379dd0dc6b61c968650335cc2b62eb3464891 /libmpdemux/parse_mp4.c | |
parent | 5f3c60a511ee604619d662583b6d5f9317d737d9 (diff) | |
download | mpv-b8d79e4b09975b8629691bd12b0fb923d598b410.tar.bz2 mpv-b8d79e4b09975b8629691bd12b0fb923d598b410.tar.xz |
FreeBSD warning fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5404 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/parse_mp4.c')
-rw-r--r-- | libmpdemux/parse_mp4.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpdemux/parse_mp4.c b/libmpdemux/parse_mp4.c index 050b7f1a66..1ba4b323a4 100644 --- a/libmpdemux/parse_mp4.c +++ b/libmpdemux/parse_mp4.c @@ -7,7 +7,9 @@ #include <stdio.h> #include <inttypes.h> +#ifdef HAVE_MALLOC_H #include <malloc.h> +#endif #include "parse_mp4.h" #include "mp_msg.h" #include "stream.h" |