Bugfix: all device counts >= 256 was broken, they truncated by % 255

because of u_char count field size. It hits when device
header file already present.
This commit is contained in:
Andrey A. Chernov 1996-08-21 17:00:54 +00:00
parent 9f6ca50ce7
commit 17c2b3452d
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
struct file_list {
struct file_list *f_next;
char *f_fn; /* the name */
u_char f_type; /* see below */
int f_type; /* type or count */
u_char f_flags; /* see below */
char *f_special; /* special make rule if present */
char *f_depends; /* additional dependancies */