Skip to content

Commit

Permalink
Fix ps2 compile error
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
  • Loading branch information
sahlberg committed May 21, 2024
1 parent 3fd5d88 commit ec92414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mount/libnfs-raw-mount.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ zdr_mountres3_ok (ZDR *zdrs, mountres3_ok *objp)
{
if (!zdr_fhandle3 (zdrs, &objp->fhandle))
return FALSE;
if (!zdr_array (zdrs, (char **)&objp->auth_flavors.auth_flavors_val, (u_int *) &objp->auth_flavors.auth_flavors_len, ~0,
if (!zdr_array (zdrs, (char **)&objp->auth_flavors.auth_flavors_val, (uint32_t *) &objp->auth_flavors.auth_flavors_len, ~0,
sizeof (int), (zdrproc_t) zdr_int))
return FALSE;
return TRUE;
Expand Down
2 changes: 1 addition & 1 deletion mount/libnfs-raw-mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ typedef struct exportnode exportnode;
struct mountres3_ok {
fhandle3 fhandle;
struct {
u_int auth_flavors_len;
uint32_t auth_flavors_len;
int *auth_flavors_val;
} auth_flavors;
};
Expand Down

0 comments on commit ec92414

Please sign in to comment.