diff options
Diffstat (limited to 'mobile/vm.go')
-rw-r--r-- | mobile/vm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/vm.go b/mobile/vm.go index a68917ca6..cb098d390 100644 --- a/mobile/vm.go +++ b/mobile/vm.go @@ -48,7 +48,7 @@ func (l *Logs) Size() int { } // Get returns the log at the given index from the slice. -func (l *Logs) Get(index int) (*Log, error) { +func (l *Logs) Get(index int) (log *Log, _ error) { if index < 0 || index >= len(l.logs) { return nil, errors.New("index out of bounds") } |