s3:g_lock: add a missing \n to a debug message in g_lock_init
authorMichael Adam <obnox@samba.org>
Mon, 19 Sep 2011 20:30:57 +0000 (22:30 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 20 Sep 2011 04:28:27 +0000 (06:28 +0200)
source3/lib/g_lock.c

index 308e5cfa2d07c8d59510d1fc05bee7958c02fa3c..38dec40f76fae0b56ebfacfe294ec820194f5f8d 100644 (file)
@@ -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;
        }