From fe79437656c456b5b6246198aeeb2fb2a1e2d235 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Fri, 15 Aug 2014 15:43:14 -0500 Subject: [PATCH] Organize types / methods a bit --- proctl/proctl_linux_amd64.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/proctl/proctl_linux_amd64.go b/proctl/proctl_linux_amd64.go index 2a45d9c9..f17e22ee 100644 --- a/proctl/proctl_linux_amd64.go +++ b/proctl/proctl_linux_amd64.go @@ -47,18 +47,18 @@ type BreakPoint struct { OriginalData []byte } -type BreakPointExistsError struct { - file string - line int - addr uintptr -} - type Variable struct { Name string Value string Type string } +type BreakPointExistsError struct { + file string + line int + addr uintptr +} + func (bpe BreakPointExistsError) Error() string { return fmt.Sprintf("Breakpoint exists at %s:%d at %x", bpe.file, bpe.line, bpe.addr) } -- GitLab