diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2011-06-15 22:31:01 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2011-06-15 22:31:01 +0200 | 
| commit | b5cda89cb5cb17db41ce75b007c15d5fc90feb61 (patch) | |
| tree | 0c3de738382ce2d5afc988d655b7792ae91a89ce /bin | |
| parent | fad411fe6e8897db9d1fd8eca899021d0203ca5b (diff) | |
Release v1.01.0
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/ekgping | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/bin/ekgping b/bin/ekgping index 500b1d0..43981a0 100755 --- a/bin/ekgping +++ b/bin/ekgping @@ -13,7 +13,7 @@ use SDL::Music;  use Term::Size;  use Time::HiRes qw(usleep); -our $VERSION = '0.0'; +our $VERSION = '1.0';  my $beep       = 0;  my $id         = 0; @@ -92,10 +92,10 @@ print "\e[?25l";  while ( usleep(100_000) ) { -	if ($ping->pumpable()) { +	if ( $ping->pumpable() ) {  		$ping->pump_nb();  	} -	elsif (($dead_count % 10) == 0) { +	elsif ( ( $dead_count % 10 ) == 0 ) {  		$ping->start();  	} @@ -157,7 +157,7 @@ B<ekgping> [B<-q>] [B<-f> I<file>] I<host> [B<--> I<ping options>]  =head1 VERSION -version 0.0 +version 1.0  =head1 DESCRIPTION | 
