소스 검색
Remove redundant conversion
master
Arun Prakash Jana
7 년 전
No known key found for this signature in database
GPG 키 ID: A75979F35C080412
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
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); |
|
|
|