diff options
author | Matt Macy <mmacy@FreeBSD.org> | 2018-05-19 05:04:38 +0000 |
---|---|---|
committer | Matt Macy <mmacy@FreeBSD.org> | 2018-05-19 05:04:38 +0000 |
commit | 788390df0ae7efc76b5498bfd1230637c48468b0 (patch) | |
tree | 3cfcf06126f9f6be3c0cec299d357aedb8889a1e | |
parent | d1230b115961179bb96d0bddd2f33abd22751422 (diff) |
Notes
-rw-r--r-- | sys/kern/kern_lockf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/kern_lockf.c b/sys/kern/kern_lockf.c index ec188187cb4e9..6fb8692d4861e 100644 --- a/sys/kern/kern_lockf.c +++ b/sys/kern/kern_lockf.c @@ -2235,8 +2235,9 @@ graph_add_edge(struct owner_graph *g, struct owner_vertex *x, { struct owner_edge *e; struct owner_vertex_list deltaF, deltaB; - int nF, nB, n, vi, i; + int nF, n, vi, i; int *indices; + int nB __unused; sx_assert(&lf_owner_graph_lock, SX_XLOCKED); |