summaryrefslogtreecommitdiffstats
path: root/libjava/gnu/classpath/jdwp
diff options
context:
space:
mode:
authorkgallowa <kgallowa@138bc75d-0d04-0410-961f-82ee72b054a4>2007-04-05 00:00:45 +0000
committerkgallowa <kgallowa@138bc75d-0d04-0410-961f-82ee72b054a4>2007-04-05 00:00:45 +0000
commit91872b3662e5805a04f3d817cfc3e4be20a778b9 (patch)
tree25bca4c12f959cc545b8bd9b480b4911fa99c513 /libjava/gnu/classpath/jdwp
parentde13ca973816d5689fff40c9e271c3dc9e53a09c (diff)
downloadppe42-gcc-91872b3662e5805a04f3d817cfc3e4be20a778b9.tar.gz
ppe42-gcc-91872b3662e5805a04f3d817cfc3e4be20a778b9.zip
2007-04-04 Kyle Galloway <kgallowa@redhat.com>
* classpath/gnu/classpath/jdwp/util/VariableTable.java: Change longs to ints for argCnt and slots. (write): Replace writeLong with writeInt for the above. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123511 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/classpath/jdwp')
-rw-r--r--libjava/gnu/classpath/jdwp/util/VariableTable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/gnu/classpath/jdwp/util/VariableTable.h b/libjava/gnu/classpath/jdwp/util/VariableTable.h
index 05b0477fed7..893348e4fad 100644
--- a/libjava/gnu/classpath/jdwp/util/VariableTable.h
+++ b/libjava/gnu/classpath/jdwp/util/VariableTable.h
@@ -33,8 +33,8 @@ public:
VariableTable(jint, jint, JArray< jlong > *, JArray< ::java::lang::String * > *, JArray< ::java::lang::String * > *, JArray< jint > *, JArray< jint > *);
virtual void write(::java::io::DataOutputStream *);
private:
- jlong __attribute__((aligned(__alignof__( ::java::lang::Object)))) argCnt;
- jlong slots;
+ jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) argCnt;
+ jint slots;
JArray< jlong > * lineCI;
JArray< jint > * slot;
JArray< jint > * lengths;
OpenPOWER on IntegriCloud