diff options
author | Anatol Belski <ab@php.net> | 2016-12-03 20:04:18 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-12-03 20:05:49 +0100 |
commit | d109642656eab06351d464025d54e098750e2a2f (patch) | |
tree | 04f5df0bb2cc06d42468d3947f604cfd85cf87a5 | |
parent | f74890bcf5caa337b243444a6cb373d800a45e3d (diff) | |
download | php-git-d109642656eab06351d464025d54e098750e2a2f.tar.gz |
suffix CS
-rw-r--r-- | Zend/zend_multiply.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h index 7a600f8296..38db1ad1b6 100644 --- a/Zend/zend_multiply.h +++ b/Zend/zend_multiply.h @@ -87,7 +87,7 @@ # define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ __int64 __high; \ __int64 __low = _mul128((a), (b), &__high); \ - if ((__low >> 63i64) == __high) { \ + if ((__low >> 63I64) == __high) { \ (usedval) = 0; \ (lval) = __low; \ } else { \ |