1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

Add newline to debug message

(This used to be commit e0868b978ec5debf6b91aeeb85aa1f404d07a34b)
This commit is contained in:
Andrew Bartlett 2003-11-07 08:29:29 +00:00
parent 80ff2046bd
commit ab023b0b49

View File

@ -131,7 +131,7 @@ BOOL lang_tdb_init(const char *lang)
asprintf(&msg_path, "%s.msg", lib_path((const char *)lang)); asprintf(&msg_path, "%s.msg", lib_path((const char *)lang));
if (stat(msg_path, &st) != 0) { if (stat(msg_path, &st) != 0) {
/* the msg file isn't available */ /* the msg file isn't available */
DEBUG(10, ("lang_tdb_init: %s: %s", msg_path, DEBUG(10, ("lang_tdb_init: %s: %s\n", msg_path,
strerror(errno))); strerror(errno)));
goto done; goto done;
} }