Legend:
- Unmodified
- Added
- Removed
-
trunk/mem.c
r381 r391 295 295 /* requires at least the header and 1 tail block */ 296 296 if (size < MINSIZE) { 297 fprintf(stderr, "xc_mem_init requires % d bytes at least\n",MINSIZE);297 fprintf(stderr, "xc_mem_init requires %lu bytes at least\n", (unsigned long) MINSIZE); 298 298 return NULL; 299 299 } -
trunk/xc_malloc.c
r390 r391 121 121 /* requires at least the header and 1 tail block */ 122 122 if (size < MINSIZE) { 123 fprintf(stderr, "xc_mem_malloc_init requires % d bytes at least\n",MINSIZE);123 fprintf(stderr, "xc_mem_malloc_init requires %lu bytes at least\n", (unsigned long) MINSIZE); 124 124 return NULL; 125 125 } -
trunk/xcache.c
r388 r391 1742 1742 } 1743 1743 if (strlen(admin_pass) != 32) { 1744 php_error_docref(NULL TSRMLS_CC, E_ERROR, "unexpect % d bytes of xcache.admin.pass, expected 32 bytes, the password after md5()",strlen(admin_pass));1744 php_error_docref(NULL TSRMLS_CC, E_ERROR, "unexpect %lu bytes of xcache.admin.pass, expected 32 bytes, the password after md5()", (unsigned long) strlen(admin_pass)); 1745 1745 zend_bailout(); 1746 1746 }
Note: See TracChangeset
for help on using the changeset viewer.