Commit 7df9ddcb authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

vlc_fixups: Use (void) instead of VLC_UNUSED which is not available.

parent 711f2a1f
......@@ -156,16 +156,16 @@ static inline char *getenv (const char *name)
typedef void *locale_t;
static inline locale_t uselocale(locale_t loc)
{
VLC_UNUSED(loc);
(void)loc;
return NULL;
}
static inline void freelocale(locale_t loc)
{
VLC_UNUSED(loc);
(void)loc;
}
static inline locale_t newlocale(int mask, const char * locale, locale_t base);
{
VLC_UNUSED(mask); VLC_UNUSED(locale); VLC_UNUSED(base);
(void)mask; (void)locale; (void)base;
return NULL;
}
#endif
......
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