Commit 2fca1a40 authored by Rob Pike's avatar Rob Pike

lib9/create.c: delete unused variable

fixes build with GCC4.6

R=adg
CC=golang-dev
https://golang.org/cl/4396048
parent b065b56d
......@@ -37,9 +37,8 @@ THE SOFTWARE.
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment