Heres one for you guys... stripclr.

Posted by Findecano on Tue 16 Oct 2007 01:28 AM — 3 posts, 13,012 views.

#0
Ok so a snippet from AFKmud website, wont actually work... for some reason I just cant put my finger on it? Well yeh, I had others look through it too, see if its just me and apparantly not.


Heres the error:
invalid conversion from 'void*' to 'char*'

And the link to the snippet is:
http://www.afkmud.com/index.php?a=files&s=viewfile&fid=110


I think the error is located on line 65 on the snippet... which is:
buf = realloc( buf, j*sizeof(char));

Anyone got any idea whats causing this?
Cheers for any help guys.
USA #1
You just need to cast the pointer, stick a (char*) in front of the call to realloc.
#2
Heh. Cheers David. None of us could quite put our finger on it. Thanks again.