Skip to content

Commit

Permalink
cmd/govim: fix bad error capture (#1205)
Browse files Browse the repository at this point in the history
  • Loading branch information
myitcv committed May 21, 2024
1 parent 5d5618a commit ec9a1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/govim/parent.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func (g *goplsSymbolCmd) Run() {
<-done

if qferr != nil {
g.Errorf("failed to convert locations to quickfix entires: %v", err)
g.Errorf("failed to convert locations to quickfix entires: %v", qferr)
}

if *g.fQuickfix {
Expand Down

0 comments on commit ec9a1d2

Please sign in to comment.