From d109642656eab06351d464025d54e098750e2a2f Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 3 Dec 2016 20:04:18 +0100 Subject: [PATCH] suffix CS --- Zend/zend_multiply.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h index 7a600f82960..38db1ad1b63 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 { \