Hello adg (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
LGTM On 14 April 2011 16:01, <r@golang.org> wrote: > Reviewers: adg, > > Message: > Hello adg (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://go.googlecode.com/hg/ > > > Description: > lib9/create.c: delete unused variable > fixes build with GCC4.6 > > Please review this at http://codereview.appspot.com/4396048/ > > Affected files: > M src/lib9/create.c > > > Index: src/lib9/create.c > =================================================================== > --- a/src/lib9/create.c > +++ b/src/lib9/create.c > @@ -37,9 +37,8 @@ > int > p9create(char *path, int mode, ulong perm) > { > - int fd, umode, rclose, rdwr; > + int fd, umode, rclose; > > - rdwr = mode&3; > rclose = mode&ORCLOSE; > mode &= ~ORCLOSE; > > > >
*** Submitted as http://code.google.com/p/go/source/detail?r=165b8254aee1 *** lib9/create.c: delete unused variable fixes build with GCC4.6 R=adg CC=golang-dev http://codereview.appspot.com/4396048