diff options
author | ulion <ulion@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-20 16:13:51 +0000 |
---|---|---|
committer | ulion <ulion@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-20 16:13:51 +0000 |
commit | 0556fa54b5b31cddefd7bef9031d7838912ef86e (patch) | |
tree | 2e4cf85da04df78be83f71d5131540a817a23cd3 | |
parent | 5d2de57e5bcef12cc7d570c9d83d27cebd94f812 (diff) | |
download | mpv-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
-rw-r--r-- | stream/stream_cddb.c | 1 |
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) |