aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_allocator_block.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
commit96a24cc79f7a32851cc2005603e32633389043a3 (patch)
tree62c91332176b091409c8f06937bbce734155981e /epan/wmem/wmem_allocator_block.c
parenta6e56df8b683bb696655c331f64f22abc8f36af4 (diff)
Fix spelling/typos found using a list of commonly misspelled words.
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
Diffstat (limited to 'epan/wmem/wmem_allocator_block.c')
-rw-r--r--epan/wmem/wmem_allocator_block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wmem/wmem_allocator_block.c b/epan/wmem/wmem_allocator_block.c
index d0987f285e..608c3fc6d8 100644
--- a/epan/wmem/wmem_allocator_block.c
+++ b/epan/wmem/wmem_allocator_block.c
@@ -57,7 +57,7 @@
* embedded, so the only additional storage cost is two pointers: one to the
* head of this list and one to the priority divider of the list (explained
* in more detail later). See the wmem_block_free_t structure.
- *
+ *
* Alloc is implemented very similarly to before. The first chunk in the free
* list is checked. If it has enough space, it is used (potentially splitting
* the chunk in two - the allocated part and the remaining free space). If it
@@ -517,7 +517,7 @@ wmem_block_alloc(void *private_data, const size_t size)
wmem_block_chunk_t *chunk;
/* We can't allocate more than will fit in a block (less our header),
- * which is an aweful lot. */
+ * which is an awful lot. */
g_assert(size < WMEM_BLOCK_SIZE - sizeof(wmem_block_chunk_t));
if (allocator->free_list_head == NULL) {