]> gcc.gnu.org Git - gcc.git/commitdiff
Fix typo in initial commit.
authorKeith Seitz <kseitz@gcc.gnu.org>
Wed, 1 Jun 2005 20:08:39 +0000 (20:08 +0000)
committerKeith Seitz <kseitz@gcc.gnu.org>
Wed, 1 Jun 2005 20:08:39 +0000 (20:08 +0000)
From-SVN: r100464

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

index 06d6f1ab8a922b94cc2b31545984a524dcce4af2..1a6a962547ea2c9c8ef886ef82d612bb73715ae2 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;
 
This page took 0.058993 seconds and 5 git commands to generate.