summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c
index 825b7ab0e..fdb1e0af5 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -3120,8 +3120,13 @@ get_sign_display_info(
{
if (nrcol)
{
- sprintf((char *)extra, "%*s ", number_width(wp),
- *pp_extra);
+ int n, width = number_width(wp) - 2;
+
+ for (n = 0; n < width; n++)
+ extra[n] = ' ';
+ extra[n] = 0;
+ STRCAT(extra, *pp_extra);
+ STRCAT(extra, " ");
*pp_extra = extra;
}
*c_extrap = NUL;