Commit 7ed045c4 authored by Andrei Vagin's avatar Andrei Vagin

pie/log: print space after timestamp

(00.566486)pie: 1: seccomp: mode 0 on tid 1
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 780f0e6a
......@@ -69,8 +69,9 @@ static void sbuf_log_init(struct simple_buf *b)
n = std_vprint_num(pbuf, sizeof(pbuf), (unsigned)now.tv_usec, &s);
pad_num(&s, &n, 6);
memcpy(b->bp, s, n);
b->bp[n] = ')';
b->bp += n + 1;
b->bp[n++] = ')';
b->bp[n++] = ' ';
b->bp += n;
}
n = std_vprint_num(pbuf, sizeof(pbuf), sys_gettid(), &s);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment