mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
There is no need for start/num to be signed in i386_ldt_args.
This commit is contained in:
parent
76e8db31fc
commit
feea0ab05b
2 changed files with 4 additions and 4 deletions
|
|
@ -48,9 +48,9 @@
|
|||
#define I386_VM86 6
|
||||
|
||||
struct i386_ldt_args {
|
||||
int start;
|
||||
unsigned int start;
|
||||
union descriptor *descs;
|
||||
int num;
|
||||
unsigned int num;
|
||||
};
|
||||
|
||||
struct i386_ioperm_args {
|
||||
|
|
|
|||
|
|
@ -48,9 +48,9 @@
|
|||
#define I386_VM86 6
|
||||
|
||||
struct i386_ldt_args {
|
||||
int start;
|
||||
unsigned int start;
|
||||
union descriptor *descs;
|
||||
int num;
|
||||
unsigned int num;
|
||||
};
|
||||
|
||||
struct i386_ioperm_args {
|
||||
|
|
|
|||
Loading…
Reference in a new issue