Changeset 392 for branches/1.2
- Timestamp:
- 2007-05-23T03:04:03+02:00 (6 years ago)
- Location:
- branches/1.2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2
-
branches/1.2/mem.c
r380 r392 315 315 /* requires at least the header and 1 tail block */ 316 316 if (size < MINSIZE) { 317 fprintf(stderr, "xc_mem_init requires % d bytes at least\n",MINSIZE);317 fprintf(stderr, "xc_mem_init requires %lu bytes at least\n", (unsigned long) MINSIZE); 318 318 return NULL; 319 319 } -
branches/1.2/xc_malloc.c
r380 r392 90 90 /* requires at least the header and 1 tail block */ 91 91 if (size < MINSIZE) { 92 fprintf(stderr, "xc_mem_malloc_init requires % d bytes at least\n",MINSIZE);92 fprintf(stderr, "xc_mem_malloc_init requires %lu bytes at least\n", (unsigned long) MINSIZE); 93 93 return NULL; 94 94 } -
branches/1.2/xcache.c
r389 r392 1561 1561 } 1562 1562 if (strlen(admin_pass) != 32) { 1563 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));1563 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)); 1564 1564 zend_bailout(); 1565 1565 }
Note: See TracChangeset
for help on using the changeset viewer.

