From f00ff2d16e59ea7ab6be76ea22397c2efc00c811 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Fri, 6 Oct 2017 04:14:07 +0200 Subject: [PATCH] BUG 2368: additional space --- src/report.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/report.c b/src/report.c index 2dac94011..c23a9466c 100644 --- a/src/report.c +++ b/src/report.c @@ -1090,6 +1090,9 @@ void report_region(struct stream *out, const region * r, faction * f) message *msg; if (owner != NULL) { + bytes = (int)strlcpy(bufp, " ", size); + if (wrptr(&bufp, &size, bytes) != 0) + WARN_STATIC_BUFFER(); msg = msg_message("nr_region_owner", "faction", owner); bytes = (int)nr_render(msg, f->locale, bufp, size, f); msg_release(msg);