mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-29 01:24:51 +02:00
Fix clang unsequenced modification warning
This commit is contained in:
committed by
Tim Edwards
parent
c276110daa
commit
954418d6d8
+6
-3
@@ -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++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user