summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_prop.c
diff options
context:
space:
mode:
authorJoe Orton <jorton@php.net>2005-03-30 13:43:36 +0000
committerJoe Orton <jorton@php.net>2005-03-30 13:43:36 +0000
commit6974b5ecced2a19b876e8f088ceba35463759491 (patch)
tree4f57a15d976fcae2120d20dc0ba8f8789951cc2a /ext/mysqli/mysqli_prop.c
parent2d45bbb9cf34c4e4ac92624f9a4ca9d8359fbc82 (diff)
downloadphp-git-6974b5ecced2a19b876e8f088ceba35463759491.tar.gz
Mark more private functions as static.
Diffstat (limited to 'ext/mysqli/mysqli_prop.c')
-rw-r--r--ext/mysqli/mysqli_prop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mysqli/mysqli_prop.c b/ext/mysqli/mysqli_prop.c
index 78e95d532d..1462655817 100644
--- a/ext/mysqli/mysqli_prop.c
+++ b/ext/mysqli/mysqli_prop.c
@@ -129,7 +129,7 @@ static int link_connect_error_read(mysqli_object *obj, zval **retval TSRMLS_DC)
/* }}} */
/* {{{ property link_affected_rows_read */
-int link_affected_rows_read(mysqli_object *obj, zval **retval TSRMLS_DC)
+static int link_affected_rows_read(mysqli_object *obj, zval **retval TSRMLS_DC)
{
MY_MYSQL *mysql;
my_ulonglong rc;
@@ -225,7 +225,7 @@ MYSQLI_MAP_PROPERTY_FUNC_LONG(result_num_rows_read, mysql_num_rows, MYSQLI_GET_R
/* statement properties */
/* {{{ property stmt_id_read */
-int stmt_id_read(mysqli_object *obj, zval **retval TSRMLS_DC)
+static int stmt_id_read(mysqli_object *obj, zval **retval TSRMLS_DC)
{
MY_STMT *p;
@@ -244,7 +244,7 @@ int stmt_id_read(mysqli_object *obj, zval **retval TSRMLS_DC)
/* }}} */
/* {{{ property stmt_affected_rows_read */
-int stmt_affected_rows_read(mysqli_object *obj, zval **retval TSRMLS_DC)
+static int stmt_affected_rows_read(mysqli_object *obj, zval **retval TSRMLS_DC)
{
MY_STMT *stmt;
my_ulonglong rc;