Fix >80 line after r230530.

llvm-svn: 230541
This commit is contained in:
Kuba Brecka 2015-02-25 20:56:04 +00:00
parent eba7f73ff9
commit 71b3a69433
1 changed files with 2 additions and 1 deletions

View File

@ -105,7 +105,8 @@ SymbolizerProcess::SymbolizerProcess(const char *path)
CHECK_NE(path_[0], '\0');
}
char *SymbolizerProcess::SendCommand(bool is_data, const char *module_name, uptr module_offset) {
char *SymbolizerProcess::SendCommand(bool is_data, const char *module_name,
uptr module_offset) {
for (; times_restarted_ < kMaxTimesRestarted; times_restarted_++) {
// Start or restart symbolizer if we failed to send command to it.
if (char *res = SendCommandImpl(is_data, module_name, module_offset))