From c33bae6e87fe5fe395c590c7dbfd4e5f4a02e467 Mon Sep 17 00:00:00 2001 From: CismonX Date: Wed, 21 Mar 2018 16:26:14 +0800 Subject: [PATCH] indent with spaces instead of tabs --- collections.c | 32 ++++++++++++++++---------------- config.w32 | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/collections.c b/collections.c index d037f7e..2c450e6 100644 --- a/collections.c +++ b/collections.c @@ -20,35 +20,35 @@ PHP_MINIT_FUNCTION(collections) zend_register_internal_class(&collections_collection_ce); INIT_CLASS_ENTRY_EX(collections_pair_ce, "Pair", strlen("Pair"), pair_methods); zend_register_internal_class(&collections_pair_ce); - return SUCCESS; + return SUCCESS; } PHP_RINIT_FUNCTION(collections) { #if defined(COMPILE_DL_COLLECTIONS) && defined(ZTS) - ZEND_TSRMLS_CACHE_UPDATE(); + ZEND_TSRMLS_CACHE_UPDATE(); #endif - return SUCCESS; + return SUCCESS; } PHP_MINFO_FUNCTION(collections) { - php_info_print_table_start(); - php_info_print_table_header(2, "collections support", "enabled"); - php_info_print_table_end(); + php_info_print_table_start(); + php_info_print_table_header(2, "collections support", "enabled"); + php_info_print_table_end(); } zend_module_entry collections_module_entry = { - STANDARD_MODULE_HEADER, - "collections", - NULL, - PHP_MINIT(collections), - NULL, - PHP_RINIT(collections), - NULL, - PHP_MINFO(collections), - PHP_COLLECTIONS_VERSION, - STANDARD_MODULE_PROPERTIES + STANDARD_MODULE_HEADER, + "collections", + NULL, + PHP_MINIT(collections), + NULL, + PHP_RINIT(collections), + NULL, + PHP_MINFO(collections), + PHP_COLLECTIONS_VERSION, + STANDARD_MODULE_PROPERTIES }; #ifdef COMPILE_DL_COLLECTIONS diff --git a/config.w32 b/config.w32 index 9018a0e..466d642 100644 --- a/config.w32 +++ b/config.w32 @@ -1,5 +1,5 @@ ARG_ENABLE("collections", "enable collections support", "no"); if (PHP_COLLECTIONS != "no") { - EXTENSION("collections", "collections.c collections_fe.c collections_methods.c", true); + EXTENSION("collections", "collections.c collections_fe.c collections_methods.c", true); }