summaryrefslogtreecommitdiff
path: root/dmake/dbug
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-22 11:12:12 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-22 11:12:33 +0100
commit1443a9f7abce965d1ca3ccf0a8f92562ebf82c07 (patch)
treec753e7c1cd9ec33b2dbeaa9defafcdd1b3355b8a /dmake/dbug
parent45739fad0b1d55e72cc1ed508b8ea33a74219290 (diff)
[Uu]sefull -> [Uu]seful
Change-Id: I5dad83789ff9b6815561208679a5e19821041e1f
Diffstat (limited to 'dmake/dbug')
-rw-r--r--dmake/dbug/malloc/_readme6
1 files changed, 3 insertions, 3 deletions
diff --git a/dmake/dbug/malloc/_readme b/dmake/dbug/malloc/_readme
index b78b1fd6bbcd..17819c7e9cdc 100644
--- a/dmake/dbug/malloc/_readme
+++ b/dmake/dbug/malloc/_readme
@@ -27,7 +27,7 @@ Features of this library:
beyound the size requested on the initial malloc is checked to
verify that it is still filled with the original fill characters.
- This is usefull for catching things like:
+ This is useful for catching things like:
ptr = malloc(5);
ptr[5] = '\0';
@@ -41,7 +41,7 @@ Features of this library:
so that you can easily determine if you are still using free'd space.
The fill pattern for free'd areas is 0x02.
- This is usefull for catching things like:
+ This is useful for catching things like:
ptr = malloc(20);
@@ -67,7 +67,7 @@ Features of this library:
If the operation goes beyond requested malloc space
call malloc_warning()
- This is usefull for catching things like:
+ This is useful for catching things like:
ptr = malloc(5);
strcpy(ptr,"abcde");