[compiler-rt] r230633 - [lsan] Fix indent.

Sergey Matveev earthdok at google.com
Thu Feb 26 06:25:26 PST 2015


Author: smatveev
Date: Thu Feb 26 08:25:25 2015
New Revision: 230633

URL: http://llvm.org/viewvc/llvm-project?rev=230633&view=rev
Log:
[lsan] Fix indent.

Modified:
    compiler-rt/trunk/lib/lsan/lsan_common_linux.cc

Modified: compiler-rt/trunk/lib/lsan/lsan_common_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/lsan/lsan_common_linux.cc?rev=230633&r1=230632&r2=230633&view=diff
==============================================================================
--- compiler-rt/trunk/lib/lsan/lsan_common_linux.cc (original)
+++ compiler-rt/trunk/lib/lsan/lsan_common_linux.cc Thu Feb 26 08:25:25 2015
@@ -154,8 +154,8 @@ struct DoStopTheWorldParam {
   void *argument;
 };
 
-static int DoStopTheWorldCallback(struct dl_phdr_info *info,
-                                             size_t size, void *data) {
+static int DoStopTheWorldCallback(struct dl_phdr_info *info, size_t size,
+                                  void *data) {
   DoStopTheWorldParam *param = reinterpret_cast<DoStopTheWorldParam *>(data);
   StopTheWorld(param->callback, param->argument);
   return 1;





More information about the llvm-commits mailing list