From: Alan Cox Date: Sun, 27 Dec 2015 12:47:48 +0000 (+0000) Subject: filesys: fix build error with level 2 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=6245c1f58946dbf62b292295110a75aa4bda7b80;p=FUZIX.git filesys: fix build error with level 2 --- diff --git a/Kernel/filesys.c b/Kernel/filesys.c index 90414f39..51b94021 100644 --- a/Kernel/filesys.c +++ b/Kernel/filesys.c @@ -1027,7 +1027,7 @@ uint8_t getperm(inoptr ino) #ifdef CONFIG_LEVEL_2 /* BSD process groups */ else if (in_group(ino->c_node.i_gid)) - mode >> = 3; + mode >>= 3; #endif return(mode & 07);