xmllite: Void functions should not return a value.
This commit is contained in:
parent
4a79345d91
commit
40300b24cc
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue