Skip to content
Snippets Groups Projects
Commit 61d26876 authored by Christian Göttsche's avatar Christian Göttsche Committed by Yorhel
Browse files

Drop extra ';' outside of a function

(cherry picked from commit 32b77d0064d3e5f52e9204ddeffc29bb21a67753)
parent 2bd83b3f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment