CVS kaffe (robilad): fixed typo on amd64
Kaffe CVS <[email protected]> Sat, 01 Mar 2008 12:51:20 -0800
| Newsgroups | gmane.comp.java.vm.kaffe.general |
|---|---|
| Message-ID | <[email protected]> |
PatchSet 7772 Date: 2008/03/01 20:49:35 Author: robilad Branch: HEAD Tag: (none) Log: fixed typo on amd64 2008-03-01 Dalibor Topic <[email protected]> * kaffe/kaffevm/constants.c (readConstantPool): Fixed typo. Reported by: Michael Koch <[email protected]> Members: ChangeLog:1.5272->1.5273 kaffe/kaffevm/constants.c:1.22->1.23 Index: kaffe/ChangeLog diff -u kaffe/ChangeLog:1.5272 kaffe/ChangeLog:1.5273 --- kaffe/ChangeLog:1.5272 Wed Feb 27 00:32:14 2008 +++ kaffe/ChangeLog Sat Mar 1 20:49:35 2008 @@ -1,3 +1,9 @@ +2008-03-01 Dalibor Topic <[email protected]> + + * kaffe/kaffevm/constants.c (readConstantPool): Fixed typo. + + Reported by: Michael Koch <[email protected]> + 2008-02-27 Dalibor Topic <[email protected]> * Makefile.am (EXTRA_DIST): Added ChangeLog.20. Index: kaffe/kaffe/kaffevm/constants.c diff -u kaffe/kaffe/kaffevm/constants.c:1.22 kaffe/kaffe/kaffevm/constants.c:1.23 --- kaffe/kaffe/kaffevm/constants.c:1.22 Sat Feb 16 17:11:41 2008 +++ kaffe/kaffe/kaffevm/constants.c Sat Mar 1 20:49:37 2008 @@ -183,7 +183,7 @@ readu4(&d4b, fp); #if SIZEOF_VOID_P == 8 - if(check_if_need_toswitch_words_in_jdouble()) + if(check_if_need_to_switch_words_in_jdouble()) pool[i] = WORDS_TO_LONG(d4b, d4); else pool[i] = WORDS_TO_LONG(d4, d4b);