diff options
author | Tim Potter <tpot@samba.org> | 2005-11-30 00:00:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:51 -0500 |
commit | ad02b0bee4c8554499e02e93903e64d599c11475 (patch) | |
tree | 4d8d4a2708e3c852acaac2bb4a37de033cc99782 | |
parent | 6672d8aeaa50c7bb48a950248df7631a63d54845 (diff) | |
download | samba-ad02b0bee4c8554499e02e93903e64d599c11475.tar.gz samba-ad02b0bee4c8554499e02e93903e64d599c11475.tar.bz2 samba-ad02b0bee4c8554499e02e93903e64d599c11475.zip |
r11965: Try to fix some 64-bit warnings.
(This used to be commit e98c28941a6002042e0e429f99f14e7dd4920aa6)
-rw-r--r-- | source4/torture/smb2/find.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |