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 --- mp3streamout~.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mp3streamout~.c') diff --git a/mp3streamout~.c b/mp3streamout~.c index f2ea966..eaa4bfc 100644 --- a/mp3streamout~.c +++ b/mp3streamout~.c @@ -121,10 +121,10 @@ static void mp3streamout_encode(t_mp3streamout *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