From 0961f62334ed92f848246c24a394df4c82726e4a Mon Sep 17 00:00:00 2001 From: twisti Date: Tue, 14 Jun 2005 18:11:35 +0000 Subject: [PATCH] * warning fix --- src/vm/linker.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vm/linker.c b/src/vm/linker.c index 76f26a2cb..80082f836 100644 --- a/src/vm/linker.c +++ b/src/vm/linker.c @@ -32,7 +32,7 @@ Edwin Steiner Christian Thalinger - $Id: linker.c 2680 2005-06-14 17:14:08Z twisti $ + $Id: linker.c 2692 2005-06-14 18:11:35Z twisti $ */ @@ -734,7 +734,7 @@ static classinfo *link_class_intern(classinfo *c) } if (!(m->flags & ACC_STATIC)) - v->table[m->vftblindex] = m->stubroutine; + v->table[m->vftblindex] = (methodptr) m->stubroutine; } /* compute instance size and offset of each field */ -- 2.25.1