Skip to content

Commit e942c09

Browse files
committed
Test
1 parent 234d566 commit e942c09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_objects_API.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ *
212212
GC_ADD_FLAGS(object, IS_OBJ_FREE_CALLED);
213213
GC_SET_REFCOUNT(object, 1);
214214
object->handlers->free_obj(object);
215-
printf("Freeing %p and invoking free\n");
215+
printf("Freeing %p and invoking free\n", object);
216216
} else {
217-
printf("Freeing %p without invoking free\n");
217+
printf("Freeing %p without invoking free\n", object);
218218
}
219219
ptr = ((char*)object) - object->handlers->offset;
220220
GC_REMOVE_FROM_BUFFER(object);

0 commit comments

Comments
 (0)