summaryrefslogtreecommitdiff
path: root/src/rmath.c
diff options
context:
space:
mode:
authorjussi2024-05-10 11:13:32 +0300
committerjussi2024-05-10 11:13:32 +0300
commite84be852546aecf3e151fd8bb92db88a068c1ea1 (patch)
tree388913b5eeac14bd9d00a38dbe7ba4459a553f5f /src/rmath.c
parentb3980ae2a5d6beae75462e5204fc97841ec62aff (diff)
downloadreilua-enhanced-e84be852546aecf3e151fd8bb92db88a068c1ea1.tar.gz
reilua-enhanced-e84be852546aecf3e151fd8bb92db88a068c1ea1.tar.bz2
reilua-enhanced-e84be852546aecf3e151fd8bb92db88a068c1ea1.zip
Indentation fix.
Diffstat (limited to 'src/rmath.c')
-rw-r--r--src/rmath.c4
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;
}
/*