Author belopolsky
Recipients
Date 2007-04-18.21:37:03
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Gcc complains as follows:

Objects/frameobject.c:140: warning: passing arg 2 of `PyString_AsStringAndSize' from incompatible pointer type

because code is declared as unsigned char* and PyString_AsStringAndSize expects an address of a plain char*.

Attached patch adds an explicit cast to silence the warning.
History
Date User Action Args
2007-08-23 15:58:02adminlinkissue1703268 messages
2007-08-23 15:58:02admincreate