projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e980526
)
Fix PARA_MAX().
author
Andre Noll
<maan@systemlinux.org>
Mon, 1 Dec 2008 20:50:11 +0000
(21:50 +0100)
committer
Andre Noll
<maan@systemlinux.org>
Mon, 1 Dec 2008 20:50:11 +0000
(21:50 +0100)
Gimme that bag. Yes, the brown one. Quick.
para.h
patch
|
blob
|
history
diff --git
a/para.h
b/para.h
index
3f2da13
..
218b814
100644
(file)
--- a/
para.h
+++ b/
para.h
@@
-42,7
+42,7
@@
typeof(x) _max1 = (x); \
typeof(y) _max2 = (y); \
(void) (&_max1 == &_max2); \
- _max1 < _max2 ? _max
1 : _max2
; })
+ _max1 < _max2 ? _max
2 : _max1
; })
/** Compute the absolute value of \a x. */
#define PARA_ABS(x) ({ \