diff options
Diffstat (limited to 'lldb/source/Core/Opcode.cpp')
-rw-r--r-- | lldb/source/Core/Opcode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Opcode.cpp b/lldb/source/Core/Opcode.cpp index b4e691c1ddc..d15fdb3b17b 100644 --- a/lldb/source/Core/Opcode.cpp +++ b/lldb/source/Core/Opcode.cpp @@ -52,8 +52,8 @@ int Opcode::Dump(Stream *s, uint32_t min_byte_width) { break; } - // Add spaces to make sure bytes dispay comes out even in case opcodes - // aren't all the same size + // Add spaces to make sure bytes dispay comes out even in case opcodes aren't + // all the same size if (static_cast<uint32_t>(bytes_written) < min_byte_width) bytes_written = s->Printf("%*s", min_byte_width - bytes_written, ""); return bytes_written; |