1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

r6675: Fix printf warning.

(This used to be commit 513fc9c24493e007a9e4d034ca05657897a5eac2)
This commit is contained in:
Tim Potter 2005-05-09 02:29:22 +00:00 committed by Gerald (Jerry) Carter
parent 1838812454
commit 61d53d5d76

View File

@ -549,7 +549,7 @@ static BOOL test_async(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
if (time(NULL) > t+2) {
printf("lock cancel by unlock was not immediate (%s) - took %d secs\n",
__location__, (int)time(NULL)-t);
__location__, (int)(time(NULL)-t));
ret = False;
goto done;
}