ソースを参照

Remove redundant conversion

master
Arun Prakash Jana 7年前
コミット
d62ce4bb5e
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      nnn.c

+ 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);


読み込み中…
キャンセル
保存