mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Fix some spelling errors
2007-10-22 Soren Sandmann <sandmann@daimi.au.dk> * sfile.c: Fix some spelling errors * profile.[ch], sysprof.[ch]: Change "non_recursive" to "cumulative" to match the UI * profile.c (add_trace_to_tree): Add a couple of asserts. * TODO: updates svn path=/trunk/; revision=383
This commit is contained in:
committed by
Søren Sandmann Pedersen
parent
686baf3304
commit
002f00a950
6
sfile.c
6
sfile.c
@ -448,7 +448,7 @@ handle_text (GMarkupParseContext *context,
|
||||
{
|
||||
if (!get_number (text, &instruction.u.pointer.target_id))
|
||||
{
|
||||
set_invalid_content_error (err, "Contents '%s' of pointer element is not a number", text);
|
||||
set_invalid_content_error (err, "Content '%s' of pointer element is not a number", text);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -456,7 +456,7 @@ handle_text (GMarkupParseContext *context,
|
||||
{
|
||||
if (!get_number (text, &instruction.u.integer.value))
|
||||
{
|
||||
set_invalid_content_error (err, "Contents '%s' of integer element not a number", text);
|
||||
set_invalid_content_error (err, "Content '%s' of integer element is not a number", text);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -464,7 +464,7 @@ handle_text (GMarkupParseContext *context,
|
||||
{
|
||||
if (!decode_text (text, &instruction.u.string.value))
|
||||
{
|
||||
set_invalid_content_error (err, "Contents '%s' of text element is illformed", text);
|
||||
set_invalid_content_error (err, "Content '%s' of text element is ill-formed", text);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user