1 breakpoint is a breakpoint not a breakpoints.

rdar://problem/13536544

llvm-svn: 178367
This commit is contained in:
Jim Ingham 2013-03-29 21:01:03 +00:00
parent 9c8414f84a
commit bb03b8f45d
1 changed files with 1 additions and 1 deletions

View File

@ -1674,7 +1674,7 @@ protected:
else
{
target->RemoveAllBreakpoints ();
result.AppendMessageWithFormat ("All breakpoints removed. (%lu breakpoints)\n", num_breakpoints);
result.AppendMessageWithFormat ("All breakpoints removed. (%lu %s)\n", num_breakpoints, num_breakpoints > 1 ? "breakpoints" : "breakpoint");
}
result.SetStatus (eReturnStatusSuccessFinishNoResult);
}