From 506cf9aaead4f5519f5549a918d285365b44e989 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 2 Dec 2011 19:34:41 +0000 Subject: libgo: Update to weekly.2011-11-01. From-SVN: r181938 --- libgo/go/archive/zip/struct.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libgo/go/archive') diff --git a/libgo/go/archive/zip/struct.go b/libgo/go/archive/zip/struct.go index a32de5a..4f9f599 100644 --- a/libgo/go/archive/zip/struct.go +++ b/libgo/go/archive/zip/struct.go @@ -60,10 +60,10 @@ type directoryEnd struct { comment string } -func recoverError(err *os.Error) { +func recoverError(errp *os.Error) { if e := recover(); e != nil { - if osErr, ok := e.(os.Error); ok { - *err = osErr + if err, ok := e.(os.Error); ok { + *errp = err return } panic(e) -- cgit v1.1