mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
sh: Change cmdtype in tblentry from short to signed char.
If this is a smaller type than int anyway, we can make it the smallest possible.
This commit is contained in:
parent
d30d96ea57
commit
d172408c7e
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ struct tblentry {
|
|||
struct tblentry *next; /* next entry in hash chain */
|
||||
union param param; /* definition of builtin function */
|
||||
int special; /* flag for special builtin commands */
|
||||
short cmdtype; /* index identifying command */
|
||||
signed char cmdtype; /* index identifying command */
|
||||
char rehash; /* if set, cd done since entry created */
|
||||
char cmdname[]; /* name of command */
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue