mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Use a pointer to a size_t for the 4th argument to copyinstr-
not a pointer to a u_int.
This commit is contained in:
parent
25b53bb41f
commit
f5a5fd9ed1
2 changed files with 2 additions and 2 deletions
|
|
@ -189,7 +189,7 @@ ext2_mount(mp, path, data, ndp, p)
|
|||
struct ufs_args args;
|
||||
struct ufsmount *ump = 0;
|
||||
register struct ext2_sb_info *fs;
|
||||
u_int size;
|
||||
size_t size;
|
||||
int error, flags;
|
||||
mode_t accessmode;
|
||||
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ ext2_mount(mp, path, data, ndp, p)
|
|||
struct ufs_args args;
|
||||
struct ufsmount *ump = 0;
|
||||
register struct ext2_sb_info *fs;
|
||||
u_int size;
|
||||
size_t size;
|
||||
int error, flags;
|
||||
mode_t accessmode;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue