aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2008-04-04 21:00:58 +0000
committerMax Horn2008-04-04 21:00:58 +0000
commit595be540839bbb6c896effeac5876a10482edcfe (patch)
tree4ad7d24f9e27339380c40c7881082eaecc9b56ea /common
parentb890b33a31657153d2efd99a8ad44953eaf7de47 (diff)
downloadscummvm-rg350-595be540839bbb6c896effeac5876a10482edcfe.tar.gz
scummvm-rg350-595be540839bbb6c896effeac5876a10482edcfe.tar.bz2
scummvm-rg350-595be540839bbb6c896effeac5876a10482edcfe.zip
cleanup
svn-id: r31391
Diffstat (limited to 'common')
-rw-r--r--common/memorypool.cpp2
-rw-r--r--common/util.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/memorypool.cpp b/common/memorypool.cpp
index b5daeee496..f3dfb7975f 100644
--- a/common/memorypool.cpp
+++ b/common/memorypool.cpp
@@ -56,7 +56,7 @@ MemoryPool::MemoryPool(size_t chunkSize) {
MemoryPool::~MemoryPool() {
for (size_t i = 0; i<_pages.size(); ++i)
- ::free(_pages[i]);
+ ::free(_pages[i]);
}
void* MemoryPool::malloc() {
diff --git a/common/util.h b/common/util.h
index dd205f159c..1f680d28c1 100644
--- a/common/util.h
+++ b/common/util.h
@@ -281,7 +281,7 @@ struct EngineDebugLevel {
* @param level the level flag (should be OR-able i.e. first one should be 1 than 2,4,...)
* @param option the option name which is used in the debugger/on the command line to enable
* this special debug level, the option will be compared case !insentiv! later
- * @param descripton the description which shows up in the debugger
+ * @param description the description which shows up in the debugger
* @return true on success false on failure
*/
bool addSpecialDebugLevel(uint32 level, const String &option, const String &description);