aboutsummaryrefslogtreecommitdiffstats
path: root/termui/msg_popup.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-08 16:17:15 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-08 16:17:15 +0100
commit97bc5ccd229b7b438262a84e3c42783b4d4a82af (patch)
tree6e5ef89c8ecce28599e9623d441a18406b2f2f93 /termui/msg_popup.go
parent77dc783fcb64adf67d10fc3232c4f06f8e3d5392 (diff)
downloadgit-bug-97bc5ccd229b7b438262a84e3c42783b4d4a82af.tar.gz
various cleanups suggested by golang-ci
Diffstat (limited to 'termui/msg_popup.go')
-rw-r--r--termui/msg_popup.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/termui/msg_popup.go b/termui/msg_popup.go
index 236c16a2..d0e31634 100644
--- a/termui/msg_popup.go
+++ b/termui/msg_popup.go
@@ -63,7 +63,7 @@ func (ep *msgPopup) layout(g *gocui.Gui) error {
v.Title = ep.title
v.Clear()
- fmt.Fprintf(v, wrapped)
+ _, _ = fmt.Fprint(v, wrapped)
if _, err := g.SetCurrentView(msgPopupView); err != nil {
return err