1
1

Drop extra ';' outside of a function

(cherry picked from commit 32b77d0064d3e5f52e9204ddeffc29bb21a67753)
Этот коммит содержится в:
Christian Göttsche 2020-04-07 21:46:55 +02:00 коммит произвёл Yorhel
родитель 2bd83b3f22
Коммит 61d268764d

Просмотреть файл

@ -38,7 +38,7 @@ static struct dir *orig; /* original directory, when refreshing an already sca
/* Table of struct dir items with more than one link (in order to detect hard links) */
#define hlink_hash(d) (kh_hash_uint64((khint64_t)d->dev) ^ kh_hash_uint64((khint64_t)d->ino))
#define hlink_equal(a, b) ((a)->dev == (b)->dev && (a)->ino == (b)->ino)
KHASHL_SET_INIT(KH_LOCAL, hl_t, hl, struct dir *, hlink_hash, hlink_equal);
KHASHL_SET_INIT(KH_LOCAL, hl_t, hl, struct dir *, hlink_hash, hlink_equal)
static hl_t *links = NULL;