Author: dubiously
Date: Fri Jan 30 10:03:22 2009
New Revision: 679
Modified:
trunk/NYTProf.xs
Log:
Fix signed/unsigned mismatch
Modified: trunk/NYTProf.xs
==============================================================================
--- trunk/NYTProf.xs (original)
+++ trunk/NYTProf.xs Fri Jan 30 10:03:22 2009
@@ -1714,8 +1714,8 @@
DB_leave(pTHX_ OP *op)
{
int saved_errno = errno;
- int prev_last_executed_fid = last_executed_fid;
- int prev_last_executed_line = last_executed_line;
+ unsigned int prev_last_executed_fid = last_executed_fid;
+ unsigned int prev_last_executed_line = last_executed_line;
const unsigned char tag = NYTP_TAG_DISCOUNT;
/* Called _after_ ops that indicate we've completed a statement
--~--~---------~--~----~------------~-------~--~----~
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]
-~----------~----~----~----~------~----~------~--~---