spaces around else for rtm

This commit is contained in:
rsc 2007-08-28 18:37:41 +00:00
parent e4d6a21165
commit 5516be1fed
12 changed files with 23 additions and 24 deletions

View file

@ -270,7 +270,7 @@ sys_open(void)
if(omode & O_CREATE){
if((ip = create(path, 1, T_FILE, 0, 0)) == 0)
return -1;
}else{
} else {
if((ip = namei(path)) == 0)
return -1;
ilock(ip);