Skip to content

Commit 97351ed

Browse files
committed
Adapt formatting to match rest of file
1 parent caf057e commit 97351ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/contrib/php_array_api.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,24 +202,24 @@ static inline zval* zval_deref_safe(zval* z) {
202202
* zval *php_array_fetchz_deref(zval *zarr, zval *key)
203203
*/
204204
static inline
205-
zval *php_array_fetchl_deref(zval *zarr, const char *key, int key_len) {
205+
zval *php_array_fetchl_deref(zval *zarr, const char *key, int key_len) {
206206
return zval_deref_safe(php_array_fetchl(zarr, key, key_len));
207207
}
208208
static inline
209-
zval *php_array_fetch_deref(zval *zarr, const char *key) {
209+
zval *php_array_fetch_deref(zval *zarr, const char *key) {
210210
return zval_deref_safe(php_array_fetch(zarr, key));
211211
}
212212
#define php_array_fetchc_deref(zarr, litstr) zval_deref_safe(php_array_fetchl(zarr, litstr, sizeof(litstr)-1))
213213
static inline
214-
zval *php_array_fetchl_safe_deref(zval *zarr, const char *key, int key_len) {
214+
zval *php_array_fetchl_safe_deref(zval *zarr, const char *key, int key_len) {
215215
return zval_deref_safe(php_array_fetchl_safe(zarr, key, key_len));
216216
}
217217
static inline
218-
zval *php_array_fetchn_deref(zval *zarr, zend_ulong idx) {
218+
zval *php_array_fetchn_deref(zval *zarr, zend_ulong idx) {
219219
return zval_deref_safe(php_array_fetchn(zarr, idx));
220220
}
221221
static inline
222-
zval *php_array_fetchz_deref(zval *zarr, zval *key) {
222+
zval *php_array_fetchz_deref(zval *zarr, zval *key) {
223223
return zval_deref_safe(php_array_fetchz(zarr, key));
224224
}
225225

0 commit comments

Comments
 (0)