mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
ndis(4): it's rather unrealistic to expect a size_t here.
int was actually OK, and u_int is more than enough.
This commit is contained in:
parent
a5b50fbc20
commit
5fe2c518bd
1 changed files with 1 additions and 1 deletions
|
|
@ -2670,7 +2670,7 @@ ndis_find_sym(lf, filename, suffix, sym)
|
|||
{
|
||||
char *fullsym;
|
||||
char *suf;
|
||||
size_t i;
|
||||
u_int i;
|
||||
|
||||
fullsym = ExAllocatePoolWithTag(NonPagedPool, MAXPATHLEN, 0);
|
||||
if (fullsym == NULL)
|
||||
|
|
|
|||
Loading…
Reference in a new issue