riched20: Fix a typo (stray address of operator).

This commit is contained in:
Michael Stefaniuc 2009-01-16 16:29:33 +01:00 committed by Alexandre Julliard
parent 3288c72057
commit 273dbe4619
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ void ME_GetSelectionParaFormat(ME_TextEditor *editor, PARAFORMAT2 *pFmt)
while (para != para_end)
{
para = para->member.para.next_para;
curFmt = &para->member.para.pFmt;
curFmt = para->member.para.pFmt;
#define CHECK_FIELD(m, f) \
if (pFmt->f != curFmt->f) pFmt->dwMask &= ~(m);