Remove bogus char cast.

PR:		118014
Submitted by:	Gardner Bell <gbell72 at rogers dot com>
Approved by:	re (rwatson), imp (mentor, implicit)
MFC after:	immediate
This commit is contained in:
Remko Lodder 2009-08-14 18:18:51 +00:00
parent 75a1f6cf5f
commit eac295c9a0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=196216

View file

@ -120,7 +120,7 @@ main(int argc, char *argv[])
int aflag = 0; /* do it for all entries */
while ((ch = getopt(argc, argv, "andfsSi:")) != -1)
switch((char)ch) {
switch(ch) {
case 'a':
aflag = 1;
break;