From: Andre Noll Date: Mon, 1 Dec 2008 20:50:11 +0000 (+0100) Subject: Fix PARA_MAX(). X-Git-Tag: v0.3.4~90 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=f6f1c320fd85a991b9e8280266f29f2db65e94ed Fix PARA_MAX(). Gimme that bag. Yes, the brown one. Quick. --- diff --git a/para.h b/para.h index 3f2da13a..218b8147 100644 --- a/para.h +++ b/para.h @@ -42,7 +42,7 @@ typeof(x) _max1 = (x); \ typeof(y) _max2 = (y); \ (void) (&_max1 == &_max2); \ - _max1 < _max2 ? _max1 : _max2; }) + _max1 < _max2 ? _max2 : _max1; }) /** Compute the absolute value of \a x. */ #define PARA_ABS(x) ({ \