Commit 94761b0d authored by Laurent Aimar's avatar Laurent Aimar

Used BLOCK_FLAG_PRIVATE_SHIFT for creating private masks.

parent 1fc22d15
...@@ -185,8 +185,8 @@ enum { ...@@ -185,8 +185,8 @@ enum {
}; };
enum { enum {
DIRAC_NON_DATED = 0x04000000, DIRAC_NON_DATED = (1 << BLOCK_FLAG_PRIVATE_SHIFT),
DIRAC_DISCARD = 0x08000000, DIRAC_DISCARD = (2 << BLOCK_FLAG_PRIVATE_SHIFT),
}; };
enum { enum {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment