From ee5bd670d4eeb09bf2ebc0e01a902ebac93aa5b8 Mon Sep 17 00:00:00 2001 From: Stefan Sommerfeld Date: Sun, 7 Nov 2010 15:57:58 -0200 Subject: [PATCH] Fix for size_t in UpnpString. --- upnp/src/api/UpnpString.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upnp/src/api/UpnpString.c b/upnp/src/api/UpnpString.c index 9b6a64b..acf9c70 100644 --- a/upnp/src/api/UpnpString.c +++ b/upnp/src/api/UpnpString.c @@ -49,7 +49,7 @@ extern char *strndup(__const char *__string, size_t __n); struct SUpnpString { /*! \brief Length of the string. */ - int m_length; + size_t m_length; /*! \brief Pointer to a dynamically allocated area that holds the NULL * terminated string. */ char *m_string;