1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-04-25 02:51:16 +03:00

Remove \n from log messages.

This commit is contained in:
Patrick Caulfield 2002-04-10 15:49:47 +00:00
parent f8047f4736
commit 8152f0d72c

View File

@ -92,7 +92,7 @@ int init_external_locking(struct locking_type *locking, struct config_file *cf)
} }
} }
log_very_verbose("Opening locking library %s\n", _lock_lib); log_very_verbose("Opening locking library %s", _lock_lib);
locking_module = dlopen(_lock_lib, RTLD_LAZY); locking_module = dlopen(_lock_lib, RTLD_LAZY);
if (!locking_module) if (!locking_module)
@ -114,6 +114,6 @@ int init_external_locking(struct locking_type *locking, struct config_file *cf)
return 0; return 0;
} }
log_verbose("Opened external locking module %s\n", _lock_lib); log_verbose("Opened external locking module %s", _lock_lib);
return init_fn(2, cf); return init_fn(2, cf);
} }