mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make this 64 bit clean. Use size_t for sysctl() length pointer args.
This commit is contained in:
parent
0304f1c01e
commit
91ae85f3c6
1 changed files with 2 additions and 1 deletions
|
|
@ -79,7 +79,8 @@ main(int argc, char *argv[]) {
|
|||
struct nw_entry_info einfo;
|
||||
struct tm *tm;
|
||||
time_t ltime;
|
||||
int opt, error, mntflags, nlsopt, wall_clock, len;
|
||||
int opt, error, mntflags, nlsopt, wall_clock;
|
||||
size_t len;
|
||||
int mib[2];
|
||||
char *p, *p1, tmp[1024];
|
||||
u_char *pv;
|
||||
|
|
|
|||
Loading…
Reference in a new issue