Skip to content

Commit 6739ace

Browse files
committed
zip: add static storage specifier for private functions
1 parent 0d440d3 commit 6739ace

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ext/zip/php_zip.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ static bool php_zipobj_close(ze_zip_object *obj, zend_string **out_str) /* {{{ *
651651
}
652652
/* }}} */
653653

654-
int php_zip_glob(zend_string *spattern, zend_long flags, zval *return_value) /* {{{ */
654+
static int php_zip_glob(zend_string *spattern, zend_long flags, zval *return_value) /* {{{ */
655655
{
656656
int cwd_skip = 0;
657657
#ifdef ZTS
@@ -755,7 +755,7 @@ int php_zip_glob(zend_string *spattern, zend_long flags, zval *return_value) /*
755755
}
756756
/* }}} */
757757

758-
int php_zip_pcre(zend_string *regexp, char *path, int path_len, zval *return_value) /* {{{ */
758+
static int php_zip_pcre(zend_string *regexp, char *path, int path_len, zval *return_value) /* {{{ */
759759
{
760760
#ifdef ZTS
761761
char cwd[MAXPATHLEN];

0 commit comments

Comments
 (0)