Changing bitflag checking style to preferred style. Fixes #11668

Signed-off-by: Jimmy Puckett <jimmy.puckett@spinen.com>
This commit is contained in:
Jimmy Puckett 2015-03-24 21:09:25 -04:00
parent 32cd20cfc3
commit 4e4940d411
2 changed files with 3 additions and 3 deletions

View file

@ -176,7 +176,7 @@ func (info *FileInfo) path() string {
}
func (info *FileInfo) isDir() bool {
return info.parent == nil || info.stat.Mode()&syscall.S_IFDIR == syscall.S_IFDIR
return info.parent == nil || info.stat.Mode()&syscall.S_IFDIR != 0
}
func (info *FileInfo) addChanges(oldInfo *FileInfo, changes *[]Change) {