浏览代码

remove unused variables

master
Hiltjo Posthuma lostd 10 年前
父节点
当前提交
446fc35593
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. +2
    -3
      noice.c

+ 2
- 3
noice.c 查看文件

@@ -423,8 +423,7 @@ dentfill(char *path, struct entry **dents,
struct dirent *dp;
struct stat sb;
char *newpath;
int n = 0;
int fd, r;
int r, n = 0;

dirp = opendir(path);
if (dirp == NULL)
@@ -517,7 +516,7 @@ browse(const char *ipath, const char *ifilter)
{
struct entry *dents;
int i, n, cur;
int r, ret, fd;
int r, fd;
char *path = xstrdup(ipath);
char *filter = xstrdup(ifilter);
regex_t filter_re;


正在加载...
取消
保存