Changeset 3454 for trunk/src/kash/shfile.c
- Timestamp:
- Sep 14, 2020, 1:58:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/shfile.c
r3451 r3454 1443 1443 { 1444 1444 /* prepare the new entry */ 1445 if ( fdto >= (int)pfdtab->size)1445 if ((unsigned)fdto >= pfdtab->size) 1446 1446 shfile_grow_tab_locked(pfdtab, fdto); 1447 if ( fdto < (int)pfdtab->size)1447 if ((unsigned)fdto < pfdtab->size) 1448 1448 { 1449 1449 if (pfdtab->tab[fdto].fd != -1)
Note:
See TracChangeset
for help on using the changeset viewer.