MFC: r199046

Fix a copy+paste error by checking the correct variable against MM_NULLACT.
This commit is contained in:
Christian Brueffer 2009-11-16 08:26:56 +00:00
parent 26520868bc
commit 841de8ae65
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=199314

View File

@ -128,7 +128,7 @@ printfmt(char *msgverb, long class, const char *label, int sev,
size += strlen(sevname);
if (text != MM_NULLTXT)
size += strlen(text);
if (text != MM_NULLACT)
if (act != MM_NULLACT)
size += strlen(act);
if (tag != MM_NULLTAG)
size += strlen(tag);