summaryrefslogtreecommitdiff
path: root/ext/intl/spoofchecker/spoofchecker_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/intl/spoofchecker/spoofchecker_main.c')
-rw-r--r--ext/intl/spoofchecker/spoofchecker_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/spoofchecker/spoofchecker_main.c b/ext/intl/spoofchecker/spoofchecker_main.c
index c37b9186a2..c0eac1f4eb 100644
--- a/ext/intl/spoofchecker/spoofchecker_main.c
+++ b/ext/intl/spoofchecker/spoofchecker_main.c
@@ -47,7 +47,7 @@ PHP_METHOD(Spoofchecker, isSuspicious)
if (error_code) {
zval_dtor(error_code);
- ZVAL_LONG(error_code, ret);
+ ZVAL_INT(error_code, ret);
}
RETVAL_BOOL(ret != 0);
}
@@ -80,7 +80,7 @@ PHP_METHOD(Spoofchecker, areConfusable)
if (error_code) {
zval_dtor(error_code);
- ZVAL_LONG(error_code, ret);
+ ZVAL_INT(error_code, ret);
}
RETVAL_BOOL(ret != 0);
}