ソースを参照

Remove redundant tmp assignment

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

+ 1
- 2
src/nnn.c ファイルの表示

@@ -1527,8 +1527,7 @@ static int xlink(char *suffix, char *path, char *buf, int type)
r = mkpath(path, fname, buf, PATH_MAX);
xstrlcpy(buf + r - 1, suffix, PATH_MAX - r - 1);

r = link_fn(pbuf, buf);
if (!r)
if (!link_fn(pbuf, buf))
++count;

pos += len + 1;


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