26 Oct
2009
26 Oct
'09
9:01 p.m.
Revision: 2899 http://trac.macosforge.org/projects/ruby/changeset/2899 Author: lsansonetti@apple.com Date: 2009-10-26 14:01:08 -0700 (Mon, 26 Oct 2009) Log Message: ----------- pass the object as is for %p (note: immediate types will be converted, but it may not matter) Modified Paths: -------------- MacRuby/trunk/sprintf.cpp Modified: MacRuby/trunk/sprintf.cpp =================================================================== --- MacRuby/trunk/sprintf.cpp 2009-10-25 22:52:51 UTC (rev 2898) +++ MacRuby/trunk/sprintf.cpp 2009-10-26 21:01:08 UTC (rev 2899) @@ -413,9 +413,6 @@ break; case 'p': - type = _C_PTR; - break; - case '@': type = _C_ID; break;