--- poppler-30jul09/poppler/Gfx.cc- 2009-07-30 01:10:42.000000000 +0100 +++ poppler-30jul09/poppler/Gfx.cc 2009-07-30 01:12:09.000000000 +0100 @@ -2512,7 +2512,7 @@ // What we do to ensure that we pass a line through this points // is making sure use the exact bboxIntersections[] value as one of the used ta[] values if (!doneBBox1 && ta[i] < bboxIntersections[1] && ta[j] > bboxIntersections[1]) { - int teoricalj = (bboxIntersections[1] - tMin) * axialMaxSplits / (tMax - tMin); + int teoricalj = (int) ((bboxIntersections[1] - tMin) * axialMaxSplits / (tMax - tMin)); if (teoricalj <= i) teoricalj = i + 1; if (teoricalj < j) { next[i] = teoricalj; @@ -2526,7 +2526,7 @@ doneBBox1 = true; } if (!doneBBox2 && ta[i] < bboxIntersections[2] && ta[j] > bboxIntersections[2]) { - int teoricalj = (bboxIntersections[2] - tMin) * axialMaxSplits / (tMax - tMin); + int teoricalj = (int) ((bboxIntersections[2] - tMin) * axialMaxSplits / (tMax - tMin)); if (teoricalj <= i) teoricalj = i + 1; if (teoricalj < j) { next[i] = teoricalj; @@ -3961,7 +3961,7 @@ maskColors[i] = obj1.getInt(); } else if (obj1.isReal()) { error(-1, "Mask entry should be an integer but it's a real, trying to use it"); - maskColors[i] = obj1.getReal(); + maskColors[i] = (int) obj1.getReal(); } else { error(-1, "Mask entry should be an integer but it's of type %d", obj1.getType()); obj1.free();