diff options
Diffstat (limited to 'plugins/SpellChecker/commons.h')
-rw-r--r-- | plugins/SpellChecker/commons.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SpellChecker/commons.h b/plugins/SpellChecker/commons.h index f40628c0cb..7243704560 100644 --- a/plugins/SpellChecker/commons.h +++ b/plugins/SpellChecker/commons.h @@ -97,7 +97,7 @@ extern BOOL uinfoex_enabled; extern BOOL variables_enabled;
-#define MAX_REGS(_A_) ( sizeof(_A_) / sizeof(_A_[0]) )
+#define MAX_REGS(_A_) ( sizeof(_A_) / sizeof(_A_[0]))
#define FREE(_m_) if (_m_ != NULL) { free(_m_); _m_ = NULL; }
|