From: Arun Prakash Jana Date: Sun, 1 Oct 2017 13:29:43 +0000 (+0530) Subject: Remove redundant conversion X-Git-Tag: v1.5~4 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=d62ce4bb5e8d3e6641b03862caabbbdc69a4c698;p=nnn.git Remove redundant conversion --- diff --git a/nnn.c b/nnn.c index c4289d2e..cbb28043 100644 --- a/nnn.c +++ b/nnn.c @@ -2831,7 +2831,7 @@ main(int argc, char *argv[]) cfg.filtermode = 1; break; case 'c': - if ((uchar)atoi(optarg) > 7) + if (atoi(optarg) > 7) cfg.showcolor = 0; else cfg.color = (uchar)atoi(optarg);