diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-11-14 09:41:55 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-11-14 09:41:55 +0100 |
| commit | 7a53e7e35da7468b5a6291fa3b5e1db4bcdf402f (patch) | |
| tree | 62d7db4c53b8ab4da2fab89c25f528904d8bf517 /pkg/report/fuchsia.go | |
| parent | f9a8d567eb3388d0909e0d3cb6df23d345911850 (diff) | |
pkg/report: combine report data into a struct
Parse returns 5 variables now. Later we may want to add crash "priority".
Introduce Report struct that holds all report data.
Diffstat (limited to 'pkg/report/fuchsia.go')
| -rw-r--r-- | pkg/report/fuchsia.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/report/fuchsia.go b/pkg/report/fuchsia.go index c68291e9e..0d529a1d5 100644 --- a/pkg/report/fuchsia.go +++ b/pkg/report/fuchsia.go @@ -31,7 +31,7 @@ func (ctx *fuchsia) ContainsCrash(output []byte) bool { panic("not implemented") } -func (ctx *fuchsia) Parse(output []byte) (desc string, text []byte, start int, end int, corrupted bool) { +func (ctx *fuchsia) Parse(output []byte) *Report { panic("not implemented") } |
