ste: Remove stray newlines in messages sent to log

This commit is contained in:
Rémi Denis-Courmont 2010-11-25 12:51:03 +02:00 committed by Denis Kenzior
parent 6a6f7bed3c
commit 44c6918081
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ static int add_attribute(struct nlmsghdr *n, unsigned int maxlen, int type,
struct rtattr *rta;
if ((NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len)) > maxlen) {
DBG("attribute to large for message %d %d %d\n",
DBG("attribute to large for message %d %d %d",
n->nlmsg_len, len, maxlen);
return -1;
}

View File

@ -130,7 +130,7 @@ static void text_handler(GMarkupParseContext *context,
static void error_handler(GMarkupParseContext *context,
GError *error, gpointer user_data)
{
DBG("Error parsing xml response from eppsd: %s\n",
DBG("Error parsing xml response from eppsd: %s",
error->message);
}