Fix for size_t in UpnpString.

This commit is contained in:
Stefan Sommerfeld 2010-11-07 15:57:58 -02:00 committed by Marcelo Roberto Jimenez
parent fcb5e7c438
commit ee5bd670d4

View File

@ -49,7 +49,7 @@ extern char *strndup(__const char *__string, size_t __n);
struct SUpnpString struct SUpnpString
{ {
/*! \brief Length of the string. */ /*! \brief Length of the string. */
int m_length; size_t m_length;
/*! \brief Pointer to a dynamically allocated area that holds the NULL /*! \brief Pointer to a dynamically allocated area that holds the NULL
* terminated string. */ * terminated string. */
char *m_string; char *m_string;