summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pkg/debug/macho/file.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/debug/macho/file.go b/src/pkg/debug/macho/file.go
index 018f71e14..3aab45f6b 100644
--- a/src/pkg/debug/macho/file.go
+++ b/src/pkg/debug/macho/file.go
@@ -126,9 +126,9 @@ type FormatError struct {
func (e *FormatError) String() string {
msg := e.msg
if e.val != nil {
- msg += fmt.Sprintf(" '%v' ", e.val)
+ msg += fmt.Sprintf(" '%v'", e.val)
}
- msg += fmt.Sprintf("in record at byte %#x", e.off)
+ msg += fmt.Sprintf(" in record at byte %#x", e.off)
return msg
}