Fix incorrect use of short when unsigned short was required in NamePtg

This commit is contained in:
Travis Burtrum 2017-05-01 16:00:47 -04:00
parent 9432be9dd6
commit 00968d5f10
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public final class NamePtg extends OperandPtg implements WorkbookDependentFormul
/** Creates new NamePtg */
public NamePtg(LittleEndianInput in) {
field_1_label_index = in.readShort();
field_1_label_index = in.readUShort();
field_2_zero = in.readShort();
}