Update declarations for all functions/methods that accept printf-style
stdarg formats to use __attribute__ format so the compiler can flag incorrect uses. Fix all incorrect uses. Most of these are innocuous, a few were resulting in crashes. llvm-svn: 140185
This commit is contained in:
@@ -729,7 +729,7 @@ SBThread::StepOverUntil (lldb::SBFrame &sb_frame,
|
||||
if (all_in_function)
|
||||
{
|
||||
step_file_spec.GetPath (path, sizeof(path));
|
||||
sb_error.SetErrorStringWithFormat("No line entries for %s:u", path, line);
|
||||
sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path, line);
|
||||
}
|
||||
else
|
||||
sb_error.SetErrorString ("Step until target not in current function.\n");
|
||||
|
||||
Reference in New Issue
Block a user