Remove a useless cast.

Spotted out by:	stefanf
This commit is contained in:
Olivier Houchard 2008-08-02 00:10:02 +00:00
parent 08e23bee1a
commit 8ee6e59f46
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181143

View File

@ -50,7 +50,7 @@ char **argv;
int c;
while ((c = getopt(argc, argv,"dsr:f:")) != -1)
switch ((char)c) {
switch (c) {
case 'd':
debug = 1;
break;