(char)NULL doesn't make much sense, use \0 instead
- shuts up another gcc warning
This commit is contained in:
parent
19d3b1c820
commit
a89c861a3d
|
@ -35,7 +35,7 @@ static modeLookup modesel[] =
|
|||
{'r', S_IROTH},
|
||||
{'w', S_IWOTH},
|
||||
{'x', S_IXOTH},
|
||||
{(char)NULL, (mode_t)-1} /* do not delete this line */
|
||||
{'\0', (mode_t)-1} /* do not delete this line */
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue