1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

ldb_key_value_test: studio compiler doesn't like empty struct definitions

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Björn Jacke 2020-10-25 17:13:57 +01:00 committed by Andrew Bartlett
parent c862ad64ae
commit 918317124a

View File

@ -76,8 +76,7 @@ int ldb_kv_increase_sequence_number(struct ldb_module *module) {
return LDB_SUCCESS;
}
struct test_ctx {
};
struct test_ctx { uint8_t dummy; };
static int setup(void **state)
{