[前][次][番号順一覧][スレッド一覧][生データ]

yarv-diff:64

From: ko1 atdot.net
Date: 31 Jul 2005 05:57:20 -0000
Subject: [yarv-diff:64] r219 - trunk

Author: ko1
Date: 2005-07-31 14:57:19 +0900 (Sun, 31 Jul 2005)
New Revision: 219

Modified:
   trunk/insns.def
Log:
add cast to remove warning


Modified: trunk/insns.def
===================================================================
--- trunk/insns.def	2005-07-31 05:54:41 UTC (rev 218)
+++ trunk/insns.def	2005-07-31 05:57:19 UTC (rev 219)
@@ -1299,7 +1299,7 @@
         yarv_control_frame_t *cfp = GET_CFP();
         int is_orphan = 1;
         
-        while(cfp < th->stack + th->stack_size){
+        while((VALUE*)cfp < th->stack + th->stack_size){
           cfp++;
           if(GET_LFP() == cfp->lfp){
             is_orphan = 0;


--
ML: yarv-diff quickml.atdot.net
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧][生データ]