|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-12-04 06:50 UTC] osvetlik at kerio dot com
Description:
------------
line 142 should read:
if ((p = (char *)memchr(p, *needle, (end-p+1))) && ne == p[needle_len-1]) {
instead of:
if ((p = memchr(p, *needle, (end-p+1))) && ne == p[needle_len-1]) {
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 12:00:01 2025 UTC |
(pts/6)osvetlik@osvetlik:~> /usr/lib/gcc-lib/i386-redhat-linux/3.3.2/cc1plus void *fce1(void) { return 0;} void fce2(void) { char *p = fce1(); } void* fce1() void* fce1() void fce2() <stdin>:2: error: invalid conversion from `void*' to `char*' void fce2() Execution times (seconds) parser : 0.01 (50%) usr 0.00 ( 0%) sys 0.00 ( 0%) wall TOTAL : 0.02 0.00 22.50 (pts/6)osvetlik@osvetlik:~>