Quote Originally Posted by ZuK View Post
You can't assign to an array.

Use strcpy() instead.

Code:
strcpy( (char *)x->content, message.c_str());
Kurt
Well, before copy you have to allocate a buffer to copy to.