change corrupt type

This commit is contained in:
rsc 2004-06-14 21:43:32 +00:00
parent 6cc8155b49
commit d3232caf63

View file

@ -80,8 +80,8 @@ enum
VtDirType = 1<<3,
/* VtDirType+1, ... */
VtRootType = 2<<3,
VtCorruptType,
VtMaxType,
VtCorruptType = 0xFF,
VtTypeDepthMask = 7,
VtTypeBaseMask = ~VtTypeDepthMask,