Skip to content

Commit

Permalink
Roster: print when sending B_READY_TO_RUN
Browse files Browse the repository at this point in the history
  • Loading branch information
jscipione committed Jun 25, 2014
1 parent 732c579 commit 807a7aa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/kits/app/Roster.cpp
Expand Up @@ -2591,9 +2591,11 @@ BRoster::_SendToRunning(team_id team, int argc, const char* const* args,
} else if (alreadyRunning && (!messageList || messageList->IsEmpty()))
messenger.SendMessage(B_SILENT_RELAUNCH);

// send B_READY_TO_RUN
if (!alreadyRunning)
if (!alreadyRunning) {
// send B_READY_TO_RUN
DBG(OUT("_SendToRunning : B_READY_TO_RUN\n"));
messenger.SendMessage(B_READY_TO_RUN);
}
}

return error;
Expand Down

0 comments on commit 807a7aa

Please sign in to comment.