From aa0f102fd7defb5ff442ac4bfc782721fbbff434 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 19 Sep 2011 22:30:57 +0200 Subject: s3:g_lock: add a missing \n to a debug message in g_lock_init --- source3/lib/g_lock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/g_lock.c b/source3/lib/g_lock.c index 308e5cfa2d..38dec40f76 100644 --- a/source3/lib/g_lock.c +++ b/source3/lib/g_lock.c @@ -62,7 +62,7 @@ struct g_lock_ctx *g_lock_ctx_init(TALLOC_CTX *mem_ctx, TDB_CLEAR_IF_FIRST|TDB_INCOMPATIBLE_HASH, O_RDWR|O_CREAT, 0600); if (result->db == NULL) { - DEBUG(1, ("g_lock_init: Could not open g_lock.tdb")); + DEBUG(1, ("g_lock_init: Could not open g_lock.tdb\n")); TALLOC_FREE(result); return NULL; } -- cgit