Commit 0cd53a58 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

riched20: Use correct flag name (Coverity).

parent 2ae0d40c
...@@ -247,7 +247,7 @@ void ME_CheckTablesForCorruption(ME_TextEditor *editor) ...@@ -247,7 +247,7 @@ void ME_CheckTablesForCorruption(ME_TextEditor *editor)
{ {
assert(!(p->member.para.nFlags & (MEPF_ROWSTART|MEPF_ROWEND|MEPF_CELL))); assert(!(p->member.para.nFlags & (MEPF_ROWSTART|MEPF_ROWEND|MEPF_CELL)));
assert(p->member.para.pFmt->dwMask & PFM_TABLE); assert(p->member.para.pFmt->dwMask & PFM_TABLE);
assert(!(p->member.para.pFmt->wEffects & PFM_TABLEROWDELIMITER)); assert(!(p->member.para.pFmt->wEffects & PFE_TABLEROWDELIMITER));
assert(!p->member.para.pCell); assert(!p->member.para.pCell);
p = p->member.para.next_para; p = p->member.para.next_para;
} }
......
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