Change 29936 missed a ;
authorNicholas Clark <nick@ccl4.org>
Tue, 23 Jan 2007 21:07:06 +0000 (21:07 +0000)
committerNicholas Clark <nick@ccl4.org>
Tue, 23 Jan 2007 21:07:06 +0000 (21:07 +0000)
p4raw-id: //depot/perl@29937

lib/Time/Local.pm

index 7347244..f5bb4bb 100644 (file)
@@ -92,7 +92,7 @@ sub timegm {
     my ( $sec, $min, $hour, $mday, $month, $year ) = @_;
 
     # Need to check leap year before altering the value
-    my $leap_year = _is_leap_year($year)
+    my $leap_year = _is_leap_year($year);
 
     if ( $year >= 1000 ) {
         $year -= 1900;