summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/pgsql_driver.c
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-07-26 00:03:10 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-07-27 16:27:41 +0200
commitcf8ef08e20f6b156c8cdf1bd926e4c34aac0952e (patch)
treeb69f2bd71f8eb01a72ac9272d15b3f57166d3472 /ext/pdo_pgsql/pgsql_driver.c
parent0eabd5231b37105fd99b75cfb8c98735e5a3f83f (diff)
downloadphp-git-cf8ef08e20f6b156c8cdf1bd926e4c34aac0952e.tar.gz
Fix typos in code
Diffstat (limited to 'ext/pdo_pgsql/pgsql_driver.c')
-rw-r--r--ext/pdo_pgsql/pgsql_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c
index 863e37d89a..64be3cd9b8 100644
--- a/ext/pdo_pgsql/pgsql_driver.c
+++ b/ext/pdo_pgsql/pgsql_driver.c
@@ -1064,7 +1064,7 @@ static PHP_METHOD(PDO, pgsqlGetNotify)
RETURN_FALSE;
#if ZEND_ENABLE_ZVAL_LONG64
} else if (ms_timeout > INT_MAX) {
- php_error_docref(NULL, E_WARNING, "timeout was shrinked to %d", INT_MAX);
+ php_error_docref(NULL, E_WARNING, "timeout was shrunk to %d", INT_MAX);
ms_timeout = INT_MAX;
#endif
}