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

r11965: Try to fix some 64-bit warnings.

This commit is contained in:
Tim Potter 2005-11-30 00:00:53 +00:00 committed by Gerald (Jerry) Carter
parent 0830ed0d60
commit e98c28941a

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)