summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorMasamitsu MURASE <[email protected]>2013-02-01 21:06:40 +0900
committerMasamitsu MURASE <[email protected]>2013-02-02 00:24:30 +0900
commit54eb08e2fc04dece78e0a900ea25f936631ff6d1 (patch)
tree4e5706642d4a3f43b31b23d3aca933436e8c6297 /src
parentc7f2911792e3ffee627bf97431fecd5bbae4b4de (diff)
downloadmruby-54eb08e2fc04dece78e0a900ea25f936631ff6d1.tar.gz
mruby-54eb08e2fc04dece78e0a900ea25f936631ff6d1.zip
Remove ";" suffix from function-type macros.
Diffstat (limited to 'src')
-rw-r--r--src/math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math.c b/src/math.c
index 3e4550946..782b75c97 100644
--- a/src/math.c
+++ b/src/math.c
@@ -11,7 +11,7 @@
#include <math.h>
#define domain_error(msg) \
- mrb_raise(mrb, E_RANGE_ERROR, "Numerical argument is out of domain - " #msg);
+ mrb_raise(mrb, E_RANGE_ERROR, "Numerical argument is out of domain - " #msg)
/* math functions not provided under Microsoft Visual C++ */
#ifdef _MSC_VER