From 71b3a694333f6ade799fd6a739199a9a91229a4f Mon Sep 17 00:00:00 2001 From: Kuba Brecka Date: Wed, 25 Feb 2015 20:56:04 +0000 Subject: [PATCH] Fix >80 line after r230530. llvm-svn: 230541 --- compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc index 125c24e..deb3429 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc @@ -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)) -- 2.7.4