summaryrefslogtreecommitdiffstats
path: root/stream/stream_cddb.c
diff options
context:
space:
mode:
authorulion <ulion@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 16:13:51 +0000
committerulion <ulion@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 16:13:51 +0000
commit0556fa54b5b31cddefd7bef9031d7838912ef86e (patch)
tree2e4cf85da04df78be83f71d5131540a817a23cd3 /stream/stream_cddb.c
parent5d2de57e5bcef12cc7d570c9d83d27cebd94f812 (diff)
downloadmpv-0556fa54b5b31cddefd7bef9031d7838912ef86e.tar.bz2
mpv-0556fa54b5b31cddefd7bef9031d7838912ef86e.tar.xz
Fix compilation failue:
stream_cddb.c: In function 'cddb_read_cache': stream_cddb.c:341: error: 'UINT_MAX' undeclared (first use in this function) stream_cddb.c:341: error: (Each undeclared identifier is reported only once stream_cddb.c:341: error: for each function it appears in.) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25820 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream_cddb.c')
-rw-r--r--stream/stream_cddb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/stream/stream_cddb.c b/stream/stream_cddb.c
index d895d1f767..f3c2410b8d 100644
--- a/stream/stream_cddb.c
+++ b/stream/stream_cddb.c
@@ -21,6 +21,7 @@
#include <errno.h>
#include <unistd.h>
#include <string.h>
+#include <limits.h>
#ifdef WIN32
#ifdef __MINGW32__
#define mkdir(a,b) mkdir(a)