diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2018-09-02 17:02:13 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2018-09-02 17:02:13 +0000 |
| commit | a9d49f9e642e10762571203e79f4df22d3ea2566 (patch) | |
| tree | 1532746a6f48c49a72cc94885671ab8167a5a6ef /sys/cddl/dev/fbt | |
| parent | 412e58bf471a8f4f0545dd3bce7fd38732c9737d (diff) | |
Notes
Diffstat (limited to 'sys/cddl/dev/fbt')
| -rw-r--r-- | sys/cddl/dev/fbt/fbt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cddl/dev/fbt/fbt.c b/sys/cddl/dev/fbt/fbt.c index 590967ade7b3f..775100c0a68b6 100644 --- a/sys/cddl/dev/fbt/fbt.c +++ b/sys/cddl/dev/fbt/fbt.c @@ -212,7 +212,7 @@ fbt_destroy_one(fbt_probe_t *fbt) ndx = FBT_ADDR2NDX(fbt->fbtp_patchpoint); for (hash = fbt_probetab[ndx], hashprev = NULL; hash != NULL; - hash = hash->fbtp_hashnext, hashprev = hash) { + hashprev = hash, hash = hash->fbtp_hashnext) { if (hash == fbt) { if ((next = fbt->fbtp_tracenext) != NULL) next->fbtp_hashnext = hash->fbtp_hashnext; |
