summaryrefslogtreecommitdiffstats
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/connection.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/connection.cc b/sql/connection.cc
index b17457b..d1b1049 100644
--- a/sql/connection.cc
+++ b/sql/connection.cc
@@ -812,7 +812,7 @@ int Connection::ExecuteAndReturnErrorCode(const char* sql) {
// sqlite3_exec() does this, presumably to avoid spinning the parser for
// trailing whitespace.
// TODO(shess): Audit to see if this can become a DCHECK.
- while (IsAsciiWhitespace(*sql)) {
+ while (base::IsAsciiWhitespace(*sql)) {
sql++;
}