diff options
| author | Martin Schwenke <martin@meltin.net> | 2013-10-11 15:53:40 +1100 |
|---|---|---|
| committer | Amitay Isaacs <amitay@gmail.com> | 2013-10-22 14:34:03 +1100 |
| commit | 19a911bf1aa2ff76e043a0df5b58f87530fac4eb (patch) | |
| tree | 4c741ae318c426075393620f08c547c35d50dab7 | |
| parent | e63232e974e6f00137272db5b7f95e173b589979 (diff) | |
client: Fix a format string argument compiler warning
Signed-off-by: Martin Schwenke <martin@meltin.net>
(This used to be ctdb commit f3413fb8b90c4d9f0c2c2a69825c66d080117193)
| -rw-r--r-- | ctdb/client/ctdb_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/client/ctdb_client.c b/ctdb/client/ctdb_client.c index 9c1c27d0f4..6ccc4c906a 100644 --- a/ctdb/client/ctdb_client.c +++ b/ctdb/client/ctdb_client.c @@ -3827,7 +3827,7 @@ static bool g_lock_parse(TALLOC_CTX *mem_ctx, TDB_DATA data, if (data.dsize % sizeof(struct g_lock_rec) != 0) { DEBUG(DEBUG_ERR, (__location__ "invalid data size %lu in g_lock record\n", - data.dsize)); + (unsigned long)data.dsize)); talloc_free(recs); return false; } |
