Skip to content

Commit

Permalink
Merge pull request #472 from hplato/razberry
Browse files Browse the repository at this point in the history
Fixed an accidental typo
  • Loading branch information
hollie committed Oct 25, 2014
2 parents e45b02e + 8fedcf1 commit 7a1ffef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/raZberry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -268,12 +268,12 @@ sub get_dev_status {
}

sub get_error_count {
my ($self) @_;
my ($self) = @_;
return ($self->{data}->{retry});
}

sub reset_error_count {
my ($self) @_;
my ($self) = @_;
$self->{data}->{retry} = 0;
}

Expand Down

0 comments on commit 7a1ffef

Please sign in to comment.