fixed wrong bit returned for IN_MOVE_SELF

This commit is contained in:
Albert S. 2015-01-06 20:19:00 +01:00
parent 92887b4d8d
commit 8304fdf2ab
1 changed files with 1 additions and 1 deletions

View File

@ -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"))