Skip to content

Commit

Permalink
Error in mix:BitsPerSample fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
gmcgath committed Sep 9, 2013
1 parent fe030dc commit 2448772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/edu/harvard/hul/ois/jhove/handler/XmlHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -3723,7 +3723,7 @@ protected void showNisoImageAssessmentMetadata20 (NisoImageMetadata niso, String
if (iarray != null) {
colorEncBuf.append (margn4 + elementStart ("mix:BitsPerSample") +
EOL);
for (int ii = 1; ii < iarray.length; ii++) {
for (int ii = 0; ii < iarray.length; ii++) {
colorEncBuf.append (margn5 + element ("mix:bitsPerSampleValue",
Integer.toString(iarray[ii]) ) + EOL);
}
Expand Down

0 comments on commit 2448772

Please sign in to comment.