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

ctdb-tests: Fix CID 1364521 (Argument cannot be negative)

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
This commit is contained in:
Amitay Isaacs 2016-07-27 12:19:04 +10:00 committed by Stefan Metzmacher
parent 9e2a7f0f85
commit 89b79136a7

View File

@ -332,8 +332,7 @@ int main(int argc, const char *argv[])
ret = ctdb_client_init(mem_ctx, ev, opts->socket, &client);
if (ret != 0) {
fprintf(stderr, "Failed to initialize client, %s\n",
strerror(ret));
fprintf(stderr, "Failed to initialize client, ret=%d\n", ret);
exit(1);
}