In usr.bin/mt/mt.c, the c_code member of struct commands should really
be an unsigned long, since it will contain values of ioctl request codes. On 64-bit arches, these will not fit into an int. MFC after: 1 week
This commit is contained in:
parent
32859c5990
commit
a709fcdc55
@ -75,7 +75,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
static const struct commands {
|
||||
const char *c_name;
|
||||
int c_code;
|
||||
unsigned long c_code;
|
||||
int c_ronly;
|
||||
int c_flags;
|
||||
} com[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user