summaryrefslogtreecommitdiff
path: root/main/main.c
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2019-07-13 02:05:17 +0200
committerPeter Kokot <peterkokot@gmail.com>2019-07-13 02:05:17 +0200
commit1c1de0c41a74b4deadd11cb18f00f115db0568ec (patch)
tree21bf6e0bb1993a0dd7bb304a3abca026cc7ab7a8 /main/main.c
parent33994ebd95c3c42b0dca4e0f161692ecee7d741b (diff)
downloadphp-git-1c1de0c41a74b4deadd11cb18f00f115db0568ec.tar.gz
Convert all php_error_docref0 to php_error_docref
Closes GH-4394
Diffstat (limited to 'main/main.c')
-rw-r--r--main/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/main.c b/main/main.c
index 18d0b43d36..48e0e1a7f7 100644
--- a/main/main.c
+++ b/main/main.c
@@ -1163,9 +1163,9 @@ PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int typ
}
/* }}} */
-/* {{{ php_error_docref0 */
-/* See: CODING_STANDARDS.md for details. */
-PHPAPI ZEND_COLD void php_error_docref0(const char *docref, int type, const char *format, ...)
+/* {{{ php_error_docref */
+/* Generate an error which links to docref or the php.net documentation if docref is NULL */
+PHPAPI ZEND_COLD void php_error_docref(const char *docref, int type, const char *format, ...)
{
va_list args;