summaryrefslogtreecommitdiffstats
path: root/osdep/mmap_anon.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-26 13:09:46 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-26 13:09:46 +0000
commit7142e36d1f4ed5a45e089bb972db73bb3f91ad94 (patch)
treed7b5557844d9d5e2b8e38d829f6d251594da509b /osdep/mmap_anon.h
parentc95db8d583d9f6a773865afe133340966334a86a (diff)
downloadmpv-7142e36d1f4ed5a45e089bb972db73bb3f91ad94.tar.bz2
mpv-7142e36d1f4ed5a45e089bb972db73bb3f91ad94.tar.xz
Remove useless fd parameter for mmap_anon
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21264 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/mmap_anon.h')
-rw-r--r--osdep/mmap_anon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/mmap_anon.h b/osdep/mmap_anon.h
index edb909bdc0..e0f2d4e1ed 100644
--- a/osdep/mmap_anon.h
+++ b/osdep/mmap_anon.h
@@ -3,6 +3,6 @@
#include <sys/types.h>
-void *mmap_anon(void *, size_t, int, int, int *, off_t);
+void *mmap_anon(void *, size_t, int, int, off_t);
#endif /* _OSDEP_MMAP_ANON_H_ */