debuggerd: fix stupid typo.

Change-Id: Icd9a25a71e1e8580a200fe68bce0b17d09c51642
This commit is contained in:
Josh Gao 2016-03-17 13:21:12 -07:00
parent e21e3c65b0
commit 1b301836bb

View file

@ -37,7 +37,7 @@ struct signal_message {
// Fork a process to send signals for the worker processes to use after they've dropped privileges.
bool start_signal_sender() {
if (signal_pid == 0) {
if (signal_pid != 0) {
ALOGE("debuggerd: attempted to start signal sender multiple times");
return false;
}