From f6f1c320fd85a991b9e8280266f29f2db65e94ed Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 1 Dec 2008 21:50:11 +0100 Subject: [PATCH] Fix PARA_MAX(). Gimme that bag. Yes, the brown one. Quick. --- para.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ({ \ -- 2.39.2