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>
Thu, 13 Oct 2011 15:24:33 +0000 (17:24 +0200)
source3/lib/g_lock.c

index a37fe932c7e3dad2e0a74ca2f8c7abfa47d7dc45..91c3b3a2969a36d3bc0e8fc5bc4835f59237b87b 100644 (file)
@@ -59,7 +59,7 @@ struct g_lock_ctx *g_lock_ctx_init(TALLOC_CTX *mem_ctx,
        result->db = db_open(result, lock_path("g_lock.tdb"), 0,
                             TDB_CLEAR_IF_FIRST|TDB_INCOMPATIBLE_HASH, O_RDWR|O_CREAT, 0700);
        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;
        }