1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

lib ldb_key_value: csbuild unused parm key

Fixes csbuild error.

Error: COMPILER_WARNING:
lib/ldb/ldb_key_value/ldb_kv_index.c: scope_hint: In function ‘re_pack’
lib/ldb/ldb_key_value/ldb_kv_index.c:3416:21: warning: unused parameter
‘key’ [-Wunused-parameter]

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Gary Lockyer 2019-06-07 15:25:50 +12:00 committed by Andreas Schneider
parent 9644240147
commit dc348f4149

View File

@ -3412,7 +3412,7 @@ static int re_index(struct ldb_kv_private *ldb_kv,
}
static int re_pack(struct ldb_kv_private *ldb_kv,
struct ldb_val key,
_UNUSED_ struct ldb_val key,
struct ldb_val val,
void *state)
{