mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove unnessasary cast
This commit is contained in:
parent
167fcf0511
commit
0c025af962
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ main(int argc, char *argv[])
|
|||
init_list(&uidlist, addelem_uid, sizeof(uid_t), "user");
|
||||
memf = nlistf = _PATH_DEVNULL;
|
||||
while ((ch = getopt(argc, argv, PS_ARGS)) != -1)
|
||||
switch ((char)ch) {
|
||||
switch (ch) {
|
||||
case 'A':
|
||||
/*
|
||||
* Exactly the same as `-ax'. This has been
|
||||
|
|
|
|||
Loading…
Reference in a new issue