<p><b>dwj07@fsu.edu</b> 2011-10-24 15:49:29 -0600 (Mon, 24 Oct 2011)</p><p><br>
        -- TRUNK COMMIT --<br>
<br>
        Fixing a small bug with the timer_ptr portion of the new timer framework.<br>
<br>
        Doesn't change anything for the old method of using timers.<br>
</p><hr noshade><pre><font color="gray">Modified: trunk/mpas/src/framework/mpas_timer.F
===================================================================
--- trunk/mpas/src/framework/mpas_timer.F        2011-10-24 21:49:06 UTC (rev 1125)
+++ trunk/mpas/src/framework/mpas_timer.F        2011-10-24 21:49:29 UTC (rev 1126)
@@ -52,7 +52,7 @@
             all_timers%timer_name = ''
             current =&gt; all_timers%next
             nullify(current%next)
-          else
+          else 
             current =&gt; all_timers%next
             timer_search: do while ((.not.timer_found) .and. associated(current))
               string_equal = (trim(current%timer_name) == trim(timer_name))
@@ -85,6 +85,8 @@
               current%min_time = 100000000.0
               current%avg_time = 0.0
               current%calls = 0
+            else
+              current =&gt; timer_ptr
             endif
           endif
 

</font>
</pre>