Fix incorrect use of short when unsigned short was required in NamePtg
This commit is contained in:
parent
9432be9dd6
commit
00968d5f10
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user