mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Fix a (fortunately harmless) signed / unsigned bug.
This commit is contained in:
parent
386caafbf7
commit
7ea97b6027
1 changed files with 2 additions and 1 deletions
|
|
@ -413,7 +413,8 @@ linprocfs_domtab(PFS_FILL_ARGS)
|
|||
static int
|
||||
linprocfs_dostat(PFS_FILL_ARGS)
|
||||
{
|
||||
int name[2], olen, plen;
|
||||
unsigned int olen, plen;
|
||||
int name[2];
|
||||
int i, ncpu;
|
||||
|
||||
name[0] = CTL_HW;
|
||||
|
|
|
|||
Loading…
Reference in a new issue