[前][次][番号順一覧][スレッド一覧]

ruby-changes:12160

From: nobu <ko1@a...>
Date: Wed, 24 Jun 2009 09:54:44 +0900 (JST)
Subject: [ruby-changes:12160] Ruby:r23835 (trunk): * vm_insnhelper.c (vm_setup_method): fixed format spec.

nobu	2009-06-24 09:54:31 +0900 (Wed, 24 Jun 2009)

  New Revision: 23835

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=23835

  Log:
    * vm_insnhelper.c (vm_setup_method): fixed format spec.

  Modified files:
    trunk/vm_insnhelper.c

Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 23834)
+++ vm_insnhelper.c	(revision 23835)
@@ -443,7 +443,7 @@
     sp = rsp + iseq->arg_size;
 
     if (LIKELY(!(flag & VM_CALL_TAILCALL_BIT))) {
-	if (0) printf("local_size: %"PRIdSIZE", arg_size: %d\n",
+	if (0) printf("local_size: %d, arg_size: %d\n",
 		      iseq->local_size, iseq->arg_size);
 
 	/* clear local variables */

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]