summaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-04-07 18:48:50 +0200
committerLennart Poettering <lennart@poettering.net>2011-04-07 18:48:50 +0200
commit20c03b7be2c87ef54533db849fd046d7014c36b4 (patch)
tree3fedf87ba7ae3bda4ba6649cd84095c884d88322 /src/log.c
parentf68319bbb8e95e6afa5793834668b5c094616249 (diff)
don't make up buffer sizes, use standard LINE_MAX instead
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/log.c b/src/log.c
index 95c27656b..3776f0d9d 100644
--- a/src/log.c
+++ b/src/log.c
@@ -238,11 +238,11 @@ void log_set_max_level(int level) {
}
static int write_to_console(
- int level,
- const char*file,
- int line,
- const char *func,
- const char *buffer) {
+ int level,
+ const char*file,
+ int line,
+ const char *func,
+ const char *buffer) {
char location[64];
struct iovec iovec[5];