fixed a simple bug

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353484 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Said Ryan Ackley 2004-01-08 11:09:37 +00:00
parent df53351856
commit b0d87aae74
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class SprmUtils
public static int addSprm(short instruction, int param, byte[] varParam, List list)
{
int type = instruction & 0xe000;
int type = (instruction & 0xe000) >> 13;
byte[] sprm = null;
switch(type)