From 2017ba338af1b935d30e0b5190ce26b7456f7c0c Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 25 Jan 2012 15:33:59 +0100 Subject: [PATCH] COMMON: Fix typo --- common/str.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/str.cpp b/common/str.cpp index 32f4b44e798..76c0ba28866 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;