summaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-25 16:03:02 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-25 16:03:02 +0000
commit11dbdc22dbe55792fb7467419aca6ada3e9d5a86 (patch)
treeb8ebe38ff192a990b0366a95ed81d078e95db804 /command.c
parentaaf54a6f0412c808262a23ce2cf9dc05b1d883e1 (diff)
downloadmpv-11dbdc22dbe55792fb7467419aca6ada3e9d5a86.tar.bz2
mpv-11dbdc22dbe55792fb7467419aca6ada3e9d5a86.tar.xz
Fix warnings:
In file included from mplayer.c:191: mp_fifo.h:5: warning: redundant redeclaration of 'mplayer_put_key' mp_core.h:129: warning: previous declaration of 'mplayer_put_key' was here In file included from command.c:59: mp_fifo.h:5: warning: redundant redeclaration of 'mplayer_put_key' mp_core.h:129: warning: previous declaration of 'mplayer_put_key' was here git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24182 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'command.c')
-rw-r--r--command.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/command.c b/command.c
index fc471b106f..7db6894360 100644
--- a/command.c
+++ b/command.c
@@ -55,6 +55,7 @@
#endif
#include "mp_core.h"
+#include "mp_fifo.h"
#define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))