remove obsolete unused counter

这个提交包含在:
Albert S. 2017-07-28 09:01:53 +02:00
父节点 b9a638d43f
当前提交 7f55924649
共有 1 个文件被更改,包括 0 次插入2 次删除

查看文件

@ -46,7 +46,6 @@ struct watchlistentry
struct watchlistentry *next;
};
size_t watchlistentries = 0;
struct watchlistentry *watchlist_head = NULL;
struct watchlistentry **watchlist = &watchlist_head;
@ -210,7 +209,6 @@ void watchqueue_add_path(const char *pathname)
e->isdir = path_is_directory(pathname);
e->next = NULL;
watchlist= &e->next;
++watchlistentries;
}