1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

As pointed out on irc, size_t is unsigned. Fix for the win32 case.

svn path=/icecast/trunk/icecast/; revision=10619
This commit is contained in:
Michael Smith 2005-12-17 12:36:08 +00:00
parent 5aa561c5b7
commit 4dea87dca7

View File

@ -21,7 +21,7 @@
#ifdef _WIN32
#define PATH_SEPARATOR "\\"
#define size_t int
#define size_t unsigned int
#define ssize_t int
#else
#define PATH_SEPARATOR "/"