aboutsummaryrefslogtreecommitdiffstats
path: root/src/LogBackend.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LogBackend.cxx')
-rw-r--r--src/LogBackend.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LogBackend.cxx b/src/LogBackend.cxx
index 3cd907179..6f1794521 100644
--- a/src/LogBackend.cxx
+++ b/src/LogBackend.cxx
@@ -120,7 +120,7 @@ chomp_length(const char *p)
{
size_t length = strlen(p);
- while (length > 0 && IsWhitespaceOrNull(p[length - 1]))
+ while (length > 0 && IsWhitespaceFast(p[length - 1]))
--length;
return (int)length;