diff options
Diffstat (limited to 'src/rmath.c')
| -rw-r--r-- | src/rmath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rmath.c b/src/rmath.c index 7287d66..9048b49 100644 --- a/src/rmath.c +++ b/src/rmath.c @@ -4,11 +4,11 @@ #include "lua_core.h" inline int imin( int a, int b ) { - return a < b ? a : b; + return a < b ? a : b; } inline int imax( int a, int b ) { - return a > b ? a : b; + return a > b ? a : b; } /* |
