Commit 83a1386b authored by Rusty Russell's avatar Rusty Russell

Fix tracing for tdb_chainunlock.

parent a08f09db
...@@ -500,7 +500,7 @@ int tdb_chainlock_unmark(struct tdb_context *tdb, TDB_DATA key) ...@@ -500,7 +500,7 @@ int tdb_chainlock_unmark(struct tdb_context *tdb, TDB_DATA key)
int tdb_chainunlock(struct tdb_context *tdb, TDB_DATA key) int tdb_chainunlock(struct tdb_context *tdb, TDB_DATA key)
{ {
tdb_trace_1rec(tdb, "tdb_chainlock", key); tdb_trace_1rec(tdb, "tdb_chainunlock", key);
return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK); return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment