diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-06-16 10:57:29 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-06-16 10:57:29 +0200 |
commit | 8b822afb0cdbc60c29ef5b9bcb0793d66ee3d40d (patch) | |
tree | 5f9035aa22e9acb7ab4bafdc611b2fc468f0c09d | |
parent | 01be55fc00ecccda2217e6b30c0ba9a099c99a38 (diff) | |
download | php-git-8b822afb0cdbc60c29ef5b9bcb0793d66ee3d40d.tar.gz |
Fix printf type
-rw-r--r-- | ext/opcache/jit/zend_jit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/jit/zend_jit.c b/ext/opcache/jit/zend_jit.c index cb6a1e7ce3..286ad6644c 100644 --- a/ext/opcache/jit/zend_jit.c +++ b/ext/opcache/jit/zend_jit.c @@ -3834,7 +3834,7 @@ ZEND_EXT_API int zend_jit_startup(void *buf, size_t size, zend_bool reattached) ZEND_EXT_API void zend_jit_shutdown(void) { if (JIT_G(debug) & ZEND_JIT_DEBUG_SIZE) { - fprintf(stderr, "\nJIT memory usage: %d\n", (char*)*dasm_ptr - (char*)dasm_buf); + fprintf(stderr, "\nJIT memory usage: %td\n", (char*)*dasm_ptr - (char*)dasm_buf); } #ifdef HAVE_OPROFILE |