aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectFrame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectFrame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp
index c752812..36f785a 100644
--- a/lldb/source/Commands/CommandObjectFrame.cpp
+++ b/lldb/source/Commands/CommandObjectFrame.cpp
@@ -127,11 +127,11 @@ public:
case 'r':
relative_frame_offset = Args::StringToSInt32 (option_arg, INT32_MIN, 0, &success);
if (!success)
- error.SetErrorStringWithFormat ("invalid frame offset argument '%s'.\n", option_arg);
+ error.SetErrorStringWithFormat ("invalid frame offset argument '%s'", option_arg);
break;
default:
- error.SetErrorStringWithFormat ("Invalid short option character '%c'.\n", short_option);
+ error.SetErrorStringWithFormat ("invalid short option character '%c'", short_option);
break;
}