[Lldb-commits] [lldb] 0cd9e59 - [ProcessGDBRemote] Fix a typo in an ifdef from 58de2a3851391d
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 24 13:49:53 PDT 2020
Author: Martin Storsjö
Date: 2020-06-24T23:49:33+03:00
New Revision: 0cd9e598291df8c633aaa0c0e1d8eeab95de9680
URL: https://github.com/llvm/llvm-project/commit/0cd9e598291df8c633aaa0c0e1d8eeab95de9680
DIFF: https://github.com/llvm/llvm-project/commit/0cd9e598291df8c633aaa0c0e1d8eeab95de9680.diff
LOG: [ProcessGDBRemote] Fix a typo in an ifdef from 58de2a3851391d
Added:
Modified:
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Removed:
################################################################################
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index d2b72de03eac..39e97c92e343 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -17,7 +17,7 @@
#include <unistd.h>
#endif
#include <sys/stat.h>
-#ifdef defined(__APPLE__)
+#if defined(__APPLE__)
#include <sys/sysctl.h>
#endif
#include <sys/types.h>
More information about the lldb-commits
mailing list