aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2012-01-25 15:33:59 +0100
committerWillem Jan Palenstijn2012-02-16 11:12:39 +0100
commit2017ba338af1b935d30e0b5190ce26b7456f7c0c (patch)
tree2dc1b295d5d8ccd9b4140f48ec21a085ebb41f31 /common
parent46321aacd85e4dfb70bb460e80667fdcbdd2791d (diff)
downloadscummvm-rg350-2017ba338af1b935d30e0b5190ce26b7456f7c0c.tar.gz
scummvm-rg350-2017ba338af1b935d30e0b5190ce26b7456f7c0c.tar.bz2
scummvm-rg350-2017ba338af1b935d30e0b5190ce26b7456f7c0c.zip
COMMON: Fix typo
Diffstat (limited to 'common')
-rw-r--r--common/str.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/str.cpp b/common/str.cpp
index 32f4b44e79..76c0ba2886 100644
--- a/common/str.cpp
+++ b/common/str.cpp
@@ -793,7 +793,7 @@ size_t strlcpy(char *dst, const char *src, size_t size) {
}
// Move to the terminating zero of the source
- // string, we need this to determin the length
+ // string, we need this to determine the length
// of the source string.
while (*src)
++src;
@@ -841,7 +841,7 @@ size_t strlcat(char *dst, const char *src, size_t size) {
*dst = 0;
// Move to the terminating zero of the source
- // string, we need this to determin the length
+ // string, we need this to determine the length
// of the source string.
while (*src)
++src;