From: <the...@us...> - 2006-12-22 06:59:05
|
Revision: 18044 http://svn.sourceforge.net/gaim/?rev=18044&view=rev Author: thekingant Date: 2006-12-21 22:59:05 -0800 (Thu, 21 Dec 2006) Log Message: ----------- Get rid of a compile warning Modified Paths: -------------- trunk/libgaim/protocols/oscar/family_chat.c Modified: trunk/libgaim/protocols/oscar/family_chat.c =================================================================== --- trunk/libgaim/protocols/oscar/family_chat.c 2006-12-22 06:39:55 UTC (rev 18043) +++ trunk/libgaim/protocols/oscar/family_chat.c 2006-12-22 06:59:05 UTC (rev 18044) @@ -121,7 +121,7 @@ outinfo->exchange = byte_stream_get16(bs); outinfo->namelen = byte_stream_get8(bs); - outinfo->name = byte_stream_getraw(bs, outinfo->namelen); + outinfo->name = (char *)byte_stream_getraw(bs, outinfo->namelen); outinfo->instance = byte_stream_get16(bs); return 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |