diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index e6b917b0c6a..8e1e6678969 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -9,11 +9,6 @@ #include "CommandObjectTarget.h" -// C Includes -// C++ Includes -#include <cerrno> - -// Other libraries and framework includes // Project includes #include "lldb/Core/Debugger.h" #include "lldb/Core/IOHandler.h" @@ -55,6 +50,10 @@ #include "lldb/Target/Thread.h" #include "lldb/Target/ThreadSpec.h" +// C Includes +// C++ Includes +#include <cerrno> + using namespace lldb; using namespace lldb_private; @@ -3108,7 +3107,7 @@ protected: } break; case 'm': - module->GetModificationTime().Dump(&strm, width); + DumpTimePoint(module->GetModificationTime(), strm, width); break; case 'p': |