aboutsummaryrefslogtreecommitdiff
path: root/source/i18n/regeximp.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/i18n/regeximp.h')
-rw-r--r--source/i18n/regeximp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/i18n/regeximp.h b/source/i18n/regeximp.h
index 31d333c..00da653 100644
--- a/source/i18n/regeximp.h
+++ b/source/i18n/regeximp.h
@@ -254,7 +254,7 @@ enum {
//
// Convenience macros for assembling and disassembling a compiled operation.
//
-#define URX_BUILD(type, val) (int32_t)((type << 24) | (val))
+int32_t URX_BUILD(int32_t val, int32_t type);
#define URX_TYPE(x) ((uint32_t)(x) >> 24)
#define URX_VAL(x) ((x) & 0xffffff)