Revision: 1220 Author: [email protected] Date: Fri May 7 02:03:36 2010 Log: Avoid compiler warning
http://code.google.com/p/perl-devel-nytprof/source/detail?r=1220 Modified: /trunk/NYTProf.xs ======================================= --- /trunk/NYTProf.xs Thu May 6 16:09:22 2010 +++ /trunk/NYTProf.xs Fri May 7 02:03:36 2010 @@ -999,7 +999,7 @@ /* short-lived and not thread safe but we only use this for tracing * and it should never be reached anyway */ - sprintf(buf, "CXt_%d", CxTYPE(cx)); + sprintf(buf, "CXt_%ld", (long)CxTYPE(cx)); return buf; } -- You've received this message because you are subscribed to the Devel::NYTProf Development User group. Group hosted at: http://groups.google.com/group/develnytprof-dev Project hosted at: http://perl-devel-nytprof.googlecode.com CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf To post, email: [email protected] To unsubscribe, email: [email protected]
