src/util/simple_mtx.h: Fix two -Wunused-param warnings.

Decorate the parameters accordingly with "UNUSED" or "MAYBE_UNUSED" (for
the param that is used in debug mode, but not in release mode).

v2: move UNUSED decoration in front of parameter declaration

Signed-off-by: Gert Wollny <gw.fossdev@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com> (v1)
This commit is contained in:
Gert Wollny 2017-11-16 16:09:52 +01:00 committed by Brian Paul
parent 811eb70a57
commit 0b984188f9

View file

@ -61,7 +61,7 @@ typedef struct {
#define _SIMPLE_MTX_INITIALIZER_NP { 0 }
static inline void
simple_mtx_init(simple_mtx_t *mtx, int type)
simple_mtx_init(simple_mtx_t *mtx, MAYBE_UNUSED int type)
{
assert(type == mtx_plain);
@ -69,7 +69,7 @@ simple_mtx_init(simple_mtx_t *mtx, int type)
}
static inline void
simple_mtx_destroy(simple_mtx_t *mtx)
simple_mtx_destroy(UNUSED simple_mtx_t *mtx)
{
}