chiark / gitweb /
journald: remove redundant newlines
authorLennart Poettering <lennart@poettering.net>
Tue, 5 Aug 2014 02:13:37 +0000 (04:13 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 5 Aug 2014 02:14:02 +0000 (04:14 +0200)
src/journal/journald-native.c

index aded9989797e1626598e708a1e858df05ac4c7f3..ac2d0ba148c10c8ddf3c25e1889fc028af54d62a 100644 (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;
                 }