Commit 40300b24 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

xmllite: Void functions should not return a value.

parent 4a79345d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment