Fix typo in initial commit.
authorkseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Jun 2005 20:08:39 +0000 (20:08 +0000)
committerkseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Jun 2005 20:08:39 +0000 (20:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100464 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/gnu/classpath/jdwp/transport/JdwpPacket.java

index 06d6f1a..1a6a962 100644 (file)
@@ -187,7 +187,7 @@ public abstract class JdwpPacket
   {
     int i = 0;
     int length = ((bytes[i++] & 0xff) << 24 | (bytes[i++] & 0xff) << 16
-                  | (bytes[i++] & 0xff) << 8 | (bytes[i++] 0xff));
+                  | (bytes[i++] & 0xff) << 8 | (bytes[i++] 0xff));
     int id = 0;
     byte flags = 0;