fixed wrong bit returned for IN_MOVE_SELF

This commit is contained in:
Albert S. 2015-01-06 20:19:00 +01:00
부모 92887b4d8d
커밋 8304fdf2ab
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -297,7 +297,7 @@ uint32_t nameToMask(const char *name)
else if(STREQ(name, "IN_DELETE_SELF"))
return IN_DELETE_SELF;
else if(STREQ(name, "IN_MOVE_SELF"))
return IN_DELETE_SELF;
return IN_MOVE_SELF;
else if(STREQ(name, "IN_ALL_EVENTS"))
return IN_ALL_EVENTS;
else if(STREQ(name, "IN_CLOSE"))