Skip to content

Commit 8b822af

Browse files
committed
Fix printf type
1 parent 01be55f commit 8b822af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3834,7 +3834,7 @@ ZEND_EXT_API int zend_jit_startup(void *buf, size_t size, zend_bool reattached)
38343834
ZEND_EXT_API void zend_jit_shutdown(void)
38353835
{
38363836
if (JIT_G(debug) & ZEND_JIT_DEBUG_SIZE) {
3837-
fprintf(stderr, "\nJIT memory usage: %d\n", (char*)*dasm_ptr - (char*)dasm_buf);
3837+
fprintf(stderr, "\nJIT memory usage: %td\n", (char*)*dasm_ptr - (char*)dasm_buf);
38383838
}
38393839

38403840
#ifdef HAVE_OPROFILE

0 commit comments

Comments
 (0)