Fix clang unsequenced modification warning
This commit is contained in:
parent
c276110daa
commit
954418d6d8
|
|
@ -321,9 +321,12 @@ PlotDumpHPRTL(hpfile, kRaster, cRaster, mRaster, yRaster)
|
|||
/* Merge the black plane into C, M, and Y */
|
||||
for (count = 0; count < ipl; count++)
|
||||
{
|
||||
*c++ = (*c | *k);
|
||||
*m++ = (*m | *k);
|
||||
*y++ = (*y | *k);
|
||||
*c = (*c | *k);
|
||||
*m = (*m | *k);
|
||||
*y = (*y | *k);
|
||||
c++;
|
||||
m++;
|
||||
y++;
|
||||
k++;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue