Skip to content

Commit 82a31a3

Browse files
committed
Fix indentation
1 parent 57cb6ac commit 82a31a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

php_phongo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void phongo_server_init (zval *return_value, mongoc
115115
void phongo_readpreference_init (zval *return_value, const mongoc_read_prefs_t *read_prefs TSRMLS_DC);
116116
void phongo_writeconcern_init (zval *return_value, const mongoc_write_concern_t *write_concern TSRMLS_DC);
117117
bool phongo_query_init (php_phongo_query_t *query, bson_t *filter, bson_t *options TSRMLS_DC);
118-
mongoc_bulk_operation_t* phongo_bulkwrite_init (zend_bool ordered);
118+
mongoc_bulk_operation_t* phongo_bulkwrite_init (zend_bool ordered);
119119
bool phongo_execute_write (mongoc_client_t *client, const char *namespace, mongoc_bulk_operation_t *bulk, const mongoc_write_concern_t *write_concern, int server_id, zval *return_value, int return_value_used TSRMLS_DC);
120120
int phongo_execute_command (mongoc_client_t *client, const char *db, const bson_t *command, const mongoc_read_prefs_t *read_preference, int server_id, zval *return_value, int return_value_used TSRMLS_DC);
121121
int phongo_execute_query (mongoc_client_t *client, const char *namespace, const php_phongo_query_t *query, const mongoc_read_prefs_t *read_preference, int server_id, zval *return_value, int return_value_used TSRMLS_DC);

src/MongoDB/BulkWrite.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ zend_object_handlers php_phongo_handler_bulkwrite;
5656
PHP_METHOD(BulkWrite, __construct)
5757
{
5858
php_phongo_bulkwrite_t *intern;
59-
zend_error_handling error_handling;
60-
zend_bool ordered = 1;
59+
zend_error_handling error_handling;
60+
zend_bool ordered = 1;
6161
(void)return_value_ptr; (void)return_value; (void)return_value_used;
6262

6363

0 commit comments

Comments
 (0)