[kaffe] CVS kaffe (robilad): Don't inline jarSeek
Kaffe CVS
cvs-commits at kaffe.org
Mon Oct 11 22:03:45 PDT 2004
PatchSet 5276
Date: 2004/10/12 04:59:28
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Don't inline jarSeek
2004-10-12 Dalibor Topic <robilad at kaffe.org>
* kaffe/kaffevm/jar.c (jarSeek): Don't inline.
Fixes gcc warnings on ix86-linux.
Members:
ChangeLog:1.2828->1.2829
kaffe/kaffevm/jar.c:1.30->1.31
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2828 kaffe/ChangeLog:1.2829
--- kaffe/ChangeLog:1.2828 Tue Oct 12 02:00:19 2004
+++ kaffe/ChangeLog Tue Oct 12 04:59:28 2004
@@ -1,3 +1,8 @@
+2004-10-12 Dalibor Topic <robilad at kaffe.org>
+
+ * kaffe/kaffevm/jar.c (jarSeek): Don't inline.
+ Fixes gcc warnings on ix86-linux.
+
2004-10-11 Dalibor Topic <robilad at kaffe.org>
* kaffe/jvmpi/jvmpi_kaffe.c,
Index: kaffe/kaffe/kaffevm/jar.c
diff -u kaffe/kaffe/kaffevm/jar.c:1.30 kaffe/kaffe/kaffevm/jar.c:1.31
--- kaffe/kaffe/kaffevm/jar.c:1.30 Sat Jul 17 07:57:14 2004
+++ kaffe/kaffe/kaffevm/jar.c Tue Oct 12 04:59:29 2004
@@ -479,7 +479,9 @@
/*
* Convenient seek function that operates on regular or mmap'ed files.
*/
-static inline off_t jarSeek(jarFile *jf, off_t offset, int whence)
+static
+off_t
+jarSeek(jarFile *jf, off_t offset, int whence)
{
off_t retval = (off_t)-1;
More information about the kaffe
mailing list