aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/StringUtil.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/util/StringUtil.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/StringUtil.cxx b/src/util/StringUtil.cxx
index 50885a34a..153846e9b 100644
--- a/src/util/StringUtil.cxx
+++ b/src/util/StringUtil.cxx
@@ -27,7 +27,7 @@
#include <string.h>
const char *
-strchug_fast(const char *p)
+StripLeft(const char *p)
{
while (IsWhitespaceNotNull(*p))
++p;
@@ -38,7 +38,7 @@ strchug_fast(const char *p)
char *
Strip(char *p)
{
- p = strchug_fast(p);
+ p = StripLeft(p);
size_t length = strlen(p);
while (length > 0 && IsWhitespaceNotNull(p[length - 1]))