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 <tatianabradley@google.com>
Reviewed-by: Zvonimir Pavlinovic <zpavlinovic@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/internal/symbols/patched_functions.go b/internal/symbols/patched_functions.go
index fa3c85c..039c988 100644
--- a/internal/symbols/patched_functions.go
+++ b/internal/symbols/patched_functions.go
@@ -37,7 +37,7 @@
 //
 // If the commit has more than one parent, an error is returned.
 func Patched(module, repoURL, commitHash string, errlog *log.Logger) (_ map[string][]string, err error) {
-	defer derrors.Wrap(&err, "Patched(%s ,%s, %s)", module, repoURL, commitHash)
+	defer derrors.Wrap(&err, "Patched(%s, %s, %s)", module, repoURL, commitHash)
 
 	repoRoot, err := os.MkdirTemp("", commitHash)
 	if err != nil {