summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-08-02 13:42:01 +0200
committerAnatol Belski <ab@php.net>2015-08-02 13:42:01 +0200
commit545b364d560b9550f853bd8dd5ab1641225a03c2 (patch)
treefe9dbef7d22f414dd94676df23cd0b869e9890e2 /ext/pgsql/pgsql.c
parent8c4bbf0f47cc5050196042f4c4b473ee4b9badb7 (diff)
downloadphp-git-545b364d560b9550f853bd8dd5ab1641225a03c2.tar.gz
remove TSRMLS_*
either remains or merged in from PHP5
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r--ext/pgsql/pgsql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 888ae76cce..89615080d8 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -5506,7 +5506,7 @@ PHP_PGSQL_API int php_pgsql_meta_data(PGconn *pg_link, const char *table_name, z
tmp_name = php_strtok_r(src, ".", &tmp_name2);
if (!tmp_name) {
efree(src);
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "The table name must be specified");
+ php_error_docref(NULL, E_WARNING, "The table name must be specified");
return FAILURE;
}
if (!tmp_name2 || !*tmp_name2) {