[MPlayer-cvslog] r25820 - trunk/stream/stream_cddb.c

ulion subversion at mplayerhq.hu
Sun Jan 20 17:13:52 CET 2008


Author: ulion
Date: Sun Jan 20 17:13:51 2008
New Revision: 25820

Log:
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.)


Modified:
   trunk/stream/stream_cddb.c

Modified: trunk/stream/stream_cddb.c
==============================================================================
--- trunk/stream/stream_cddb.c	(original)
+++ trunk/stream/stream_cddb.c	Sun Jan 20 17:13:51 2008
@@ -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)



More information about the MPlayer-cvslog mailing list