xmllite: Void functions should not return a value.

This commit is contained in:
Andrew Talbot 2012-11-24 21:09:32 +00:00 committed by Alexandre Julliard
parent 4a79345d91
commit 40300b24cc
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ static inline void *reader_alloc(xmlreader *reader, size_t len)
static inline void reader_free(xmlreader *reader, void *mem)
{
return m_free(reader->imalloc, mem);
m_free(reader->imalloc, mem);
}
/* reader input memory allocation functions */
@ -162,7 +162,7 @@ static inline void *readerinput_realloc(xmlreaderinput *input, void *mem, size_t
static inline void readerinput_free(xmlreaderinput *input, void *mem)
{
return m_free(input->imalloc, mem);
m_free(input->imalloc, mem);
}
static inline WCHAR *readerinput_strdupW(xmlreaderinput *input, const WCHAR *str)