mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
Drop extra ';' outside of a function
This commit is contained in:
parent
ce7036d249
commit
32b77d0064
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue