1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-18 06:04:06 +03:00

r11965: Try to fix some 64-bit warnings.

(This used to be commit e98c28941a6002042e0e429f99f14e7dd4920aa6)
This commit is contained in:
Tim Potter 2005-11-30 00:00:53 +00:00 committed by Gerald (Jerry) Carter
parent 6672d8aeaa
commit ad02b0bee4

View File

@ -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)