Author: dubiously
Date: Fri Jul  3 16:49:47 2009
New Revision: 797

Modified:
    trunk/NYTProf.xs

Log:
Declarations must come before executable code (for MS VisualC)

Modified: trunk/NYTProf.xs
==============================================================================
--- trunk/NYTProf.xs    (original)
+++ trunk/NYTProf.xs    Fri Jul  3 16:49:47 2009
@@ -2242,8 +2242,8 @@
      int profile_sub_call = (profile_subs && is_profiling);

      if (profile_sub_call) {
-        sub_sv = *SP;
          int saved_errno = errno;
+        sub_sv = *SP;
          if (!profile_stmts)
              reinit_if_forked(aTHX);
          get_time_of_day(sub_call_start.initial_call_time);

--~--~---------~--~----~------------~-------~--~----~
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]
-~----------~----~----~----~------~----~------~--~---

Reply via email to