Skip to content

Commit 6fd47d3

Browse files
author
Maceo Thompson
committed
internal/symbols: fix typo in Patched error out
Fixes a spacing typo in the output of symbols.Patched(). Change-Id: I2a2721af701e70985e4ad216dca5fea416164c76 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/558635 Reviewed-by: Tatiana Bradley <[email protected]> Reviewed-by: Zvonimir Pavlinovic <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 4ae0e57 commit 6fd47d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/symbols/patched_functions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
//
3838
// If the commit has more than one parent, an error is returned.
3939
func Patched(module, repoURL, commitHash string, errlog *log.Logger) (_ map[string][]string, err error) {
40-
defer derrors.Wrap(&err, "Patched(%s ,%s, %s)", module, repoURL, commitHash)
40+
defer derrors.Wrap(&err, "Patched(%s, %s, %s)", module, repoURL, commitHash)
4141

4242
repoRoot, err := os.MkdirTemp("", commitHash)
4343
if err != nil {

0 commit comments

Comments
 (0)