Commit df739316 authored by Tomáš Szaniszlo's avatar Tomáš Szaniszlo
Browse files

Use || instead of // to support Perl 5.8

Thanks to Jiri Novosad for reporting.
parent 1be934f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -215,7 +215,7 @@ sub check_args
                if(!$opt{'d'}) { usage(); }

                $dev = $opt{'d'};
                $runtime = $opt{'r'} // 0;
                $runtime = $opt{'r'} || 0;
                print "Dev: $dev Runtime: $runtime\n" if ($DEBUG);

                $live=1;