changeset 25792:0bf5384fb82c

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.)
author ulion
date Sun, 20 Jan 2008 16:13:51 +0000
parents 5448bd27b954
children ac1a2c121d3a
files stream/stream_cddb.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/stream/stream_cddb.c	Sun Jan 20 15:43:10 2008 +0000
+++ b/stream/stream_cddb.c	Sun Jan 20 16:13:51 2008 +0000
@@ -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)