Don't assume file descriptors fit in a short, use an int instead.

This commit is contained in:
tjr 2002-07-18 12:24:35 +00:00
parent ba20a0e55f
commit 74e419398d

View File

@ -73,7 +73,7 @@ __FBSDID("$FreeBSD$");
MKINIT
struct redirtab {
struct redirtab *next;
short renamed[10];
int renamed[10];
};