From 142e3d312251b46526350ddfebaca6286146aaf2 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 7 Apr 2011 20:48:27 +0930 Subject: [PATCH] tdb2: fix an error message misspelling. --- ccan/tdb2/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccan/tdb2/open.c b/ccan/tdb2/open.c index c6fd9a09..7cbac0af 100644 --- a/ccan/tdb2/open.c +++ b/ccan/tdb2/open.c @@ -174,7 +174,7 @@ static enum TDB_ERROR tdb_new_file(struct tdb_context *tdb) tdb->file = malloc(sizeof(*tdb->file)); if (!tdb->file) return tdb_logerr(tdb, TDB_ERR_OOM, TDB_LOG_ERROR, - "tdb_open: could alloc tdb_file structure"); + "tdb_open: cannot alloc tdb_file structure"); tdb->file->num_lockrecs = 0; tdb->file->lockrecs = NULL; tdb->file->allrecord_lock.count = 0; -- 2.39.2