From 28e29fd0532d88efde2a40afb127bc80af8ab0e6 Mon Sep 17 00:00:00 2001 From: cognet Date: Sat, 2 Aug 2008 00:10:02 +0000 Subject: Remove a useless cast. Spotted out by: stefanf --- usr.sbin/bootparamd/bootparamd/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin') diff --git a/usr.sbin/bootparamd/bootparamd/main.c b/usr.sbin/bootparamd/bootparamd/main.c index 38ef356..8c93c1f 100644 --- a/usr.sbin/bootparamd/bootparamd/main.c +++ b/usr.sbin/bootparamd/bootparamd/main.c @@ -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; -- cgit v1.1