journald: remove redundant newlines

This commit is contained in:
Lennart Poettering 2014-08-05 04:13:37 +02:00
parent a174f94d52
commit 8c0b803b97
1 changed files with 2 additions and 4 deletions

View File

@ -108,8 +108,7 @@ void server_process_native_message(
/* Entry separator */
if (entry_size + n + 1 > ENTRY_SIZE_MAX) { /* data + separators + trailer */
log_debug("Entry is too big with %u properties and %zu bytes, ignoring.",
n, entry_size);
log_debug("Entry is too big with %u properties and %zu bytes, ignoring.", n, entry_size);
continue;
}
@ -134,8 +133,7 @@ void server_process_native_message(
/* A property follows */
/* n received properties, +1 for _TRANSPORT */
if (!GREEDY_REALLOC(iovec, m, n + 1 + N_IOVEC_META_FIELDS +
!!object_pid * N_IOVEC_OBJECT_FIELDS)) {
if (!GREEDY_REALLOC(iovec, m, n + 1 + N_IOVEC_META_FIELDS + !!object_pid * N_IOVEC_OBJECT_FIELDS)) {
log_oom();
break;
}