mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
fix warning
This commit is contained in:
parent
7ebbe20fb0
commit
8aa0c92bc6
@ -620,7 +620,7 @@ static void php_message_handler_for_zend(long message, void *data)
|
||||
mem_header *t = (mem_header *) data;
|
||||
void *ptr = (void *)((char *)t+sizeof(mem_header)+PLATFORM_PADDING);
|
||||
|
||||
snprintf(memory_leak_buf, 512, "%s(%d) : Freeing 0x%0.8X (%d bytes), script=%s\n", t->filename, t->lineno, (unsigned long)ptr, t->size, SAFE_FILENAME(SG(request_info).path_translated));
|
||||
snprintf(memory_leak_buf, 512, "%s(%d) : Freeing 0x%0.8lX (%d bytes), script=%s\n", t->filename, t->lineno, (unsigned long)ptr, t->size, SAFE_FILENAME(SG(request_info).path_translated));
|
||||
if (t->orig_filename) {
|
||||
char relay_buf[512];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user