From 643db65912ac1b19cafc5e6a194828132029ba79 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 1 Aug 2011 23:29:14 +0000 Subject: replaced NT and UNIX macros with _WIN32 and _MSC_VER where appropriate svn path=/trunk/externals/unauthorized/; revision=15192 --- mp3cast~.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mp3cast~.c') diff --git a/mp3cast~.c b/mp3cast~.c index 0568443..f50793d 100644 --- a/mp3cast~.c +++ b/mp3cast~.c @@ -135,10 +135,10 @@ static void mp3cast_encode(t_mp3cast *x) int err = -1; int n = x->x_lamechunk; -#ifdef UNIX - if(x->x_lamechunk < (int)sizeof(x->x_mp3inbuf)) -#else +#ifdef _WIN32 if(x->x_lamechunk < sizeof(x->x_mp3inbuf)) +#else + if(x->x_lamechunk < (int)sizeof(x->x_mp3inbuf)) #endif { error("not enough memory!"); -- cgit v1.2.1