From ad02b0bee4c8554499e02e93903e64d599c11475 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 30 Nov 2005 00:00:53 +0000 Subject: r11965: Try to fix some 64-bit warnings. (This used to be commit e98c28941a6002042e0e429f99f14e7dd4920aa6) --- source4/torture/smb2/find.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture') diff --git a/source4/torture/smb2/find.c b/source4/torture/smb2/find.c index 4a5cd44033..37e8db65bf 100644 --- a/source4/torture/smb2/find.c +++ b/source4/torture/smb2/find.c @@ -47,7 +47,7 @@ static struct { if (io.all_info2.out.field != d->stype.field) { \ printf("(%s) %s/%s should be 0x%llx - 0x%llx\n", __location__, \ #call_name, #field, \ - (uint64_t)io.all_info2.out.field, (uint64_t)d->stype.field); \ + (long long)io.all_info2.out.field, (long long)d->stype.field); \ ret = False; \ }} while (0) -- cgit