]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/check.c
tdb: spelling fixes
[ccan] / ccan / tdb / check.c
index fa003b79aebabd28aed807c4f9ca1d65d3014d09..4fbbb92c5a4ae62902d14b7ccffa697df0ccbde8 100644 (file)
@@ -309,7 +309,7 @@ static bool tdb_check_free_record(struct tdb_context *tdb,
 }
 
 /* Slow, but should be very rare. */
-static size_t dead_space(struct tdb_context *tdb, tdb_off_t off)
+size_t tdb_dead_space(struct tdb_context *tdb, tdb_off_t off)
 {
        size_t len;
 
@@ -407,7 +407,7 @@ int tdb_check(struct tdb_context *tdb,
                                found_recovery = true;
                                break;
                        }
-                       dead = dead_space(tdb, off);
+                       dead = tdb_dead_space(tdb, off);
                        if (dead < sizeof(rec))
                                goto corrupt;