summaryrefslogtreecommitdiff
path: root/Lib/scilab
diff options
context:
space:
mode:
authorSimon Marchetto <simon.marchetto@scilab-enterprises.com>2014-09-10 15:26:14 +0200
committerSimon Marchetto <simon.marchetto@scilab-enterprises.com>2014-09-10 15:26:14 +0200
commit7249cd6a97dca13938263625e0f2a77f0d5437d9 (patch)
tree40bba9b9a67968be559213815e4c70698faec5d1 /Lib/scilab
parent35b6732b3df7c6e979b05cfac86e0bc274516037 (diff)
downloadswig-7249cd6a97dca13938263625e0f2a77f0d5437d9.tar.gz
scilab: fix compilation error (extra parenthesis)
Diffstat (limited to 'Lib/scilab')
-rw-r--r--Lib/scilab/scirun.swg2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/scilab/scirun.swg b/Lib/scilab/scirun.swg
index 5bb2b7b48..fb28d7fe7 100644
--- a/Lib/scilab/scirun.swg
+++ b/Lib/scilab/scirun.swg
@@ -280,7 +280,7 @@ int SWIG_this(SWIG_GatewayParameters) {
if (SwigScilabPtrToObject(pvApiCtx, 1, &ptrValue, NULL, 0, fname) == SWIG_OK) {
SWIG_Scilab_SetOutputPosition(1);
createScalarDouble(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + 1,
- (double) (unsigned long) ptrValue));
+ (double) (unsigned long) ptrValue);
return SWIG_Scilab_SetOutput(pvApiCtx);
}
else {