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

ctdb-tests: Fix CID 1364525 (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:22:06 +10:00 committed by Stefan Metzmacher
parent 654459054d
commit a20c3df649

View File

@ -233,8 +233,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);
}