From 696f4ff084c2c7599f36f7e2d6fbdc6c242c9de8 Mon Sep 17 00:00:00 2001
From: Drew DeVault <sir@cmpwn.com>
Date: Thu, 19 Mar 2020 18:33:42 -0400
Subject: [PATCH] msgviewer: do not interpret header as format string

---
 widgets/msgviewer.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/widgets/msgviewer.go b/widgets/msgviewer.go
index 9c75972..35fc4b6 100644
--- a/widgets/msgviewer.go
+++ b/widgets/msgviewer.go
@@ -702,8 +702,8 @@ func (hv *HeaderView) Draw(ctx *ui.Context) {
 		hstyle = tcell.StyleDefault.Bold(true)
 	}
 	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', vstyle)
-	ctx.Printf(0, 0, hstyle, name)
-	ctx.Printf(size, 0, vstyle, value)
+	ctx.Printf(0, 0, hstyle, "%s", name)
+	ctx.Printf(size, 0, vstyle, "%s", value)
 }
 
 func (hv *HeaderView) Invalidate() {