build: pacified compiler warnings in x86/x64

Signed-off-by: Casey Bodley <cbodley@citi.umich.edu>
This commit is contained in:
Casey Bodley 2011-10-31 15:25:32 -04:00 committed by unknown
parent 0694415a95
commit 06b025a89c
6 changed files with 11 additions and 13 deletions

View file

@ -2604,7 +2604,7 @@ static bool_t encode_file_attrs(
}
if (info->attrmask.arr[1] & FATTR4_WORD1_OWNER) {
char *ptr = &info->owner[0];
uint32_t owner_len = strlen(info->owner);
uint32_t owner_len = (uint32_t)strlen(info->owner);
if (!xdr_bytes(&localxdr, &ptr, &owner_len,
NFS4_OPAQUE_LIMIT))
return FALSE;
@ -2612,7 +2612,7 @@ static bool_t encode_file_attrs(
}
if (info->attrmask.arr[1] & FATTR4_WORD1_OWNER_GROUP) {
char *ptr = &info->owner_group[0];
uint32_t owner_group_len = strlen(info->owner_group);
uint32_t owner_group_len = (uint32_t)strlen(info->owner_group);
if (!xdr_bytes(&localxdr, &ptr, &owner_group_len,
NFS4_OPAQUE_LIMIT))
return FALSE;