Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix small details
  • Loading branch information
Lorn Potter committed Oct 7, 2013
1 parent 3095ab0 commit 30112b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/hybrisadaptor.cpp
Expand Up @@ -389,10 +389,9 @@ bool HybrisAdaptor::standby()

sensordLogD() << "Adaptor '" << id() << "' going to standby";
stopReaderThread();
// closeAllFds();

running_ = false;
return false;
return true;
}


Expand Down Expand Up @@ -421,7 +420,7 @@ bool HybrisAdaptor::resume()
}

running_ = true;
return false;
return true;
}

unsigned int HybrisAdaptor::interval() const
Expand Down

0 comments on commit 30112b0

Please sign in to comment.