From b6433f144db43de8915b4efaaeb7881d9b67cdca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 11 Jan 2011 14:30:03 +0000 Subject: [PATCH] No space after unary minus --- includes/db/DatabaseSqlite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/DatabaseSqlite.php b/includes/db/DatabaseSqlite.php index 80bf092ebf..4da6ecf5b1 100644 --- a/includes/db/DatabaseSqlite.php +++ b/includes/db/DatabaseSqlite.php @@ -415,7 +415,7 @@ class DatabaseSqlite extends DatabaseBase { * In SQLite this is SQLITE_MAX_LENGTH, by default 1GB. No way to query it though. */ function textFieldSize( $table, $field ) { - return - 1; + return -1; } function unionSupportsOrderAndLimit() { -- 2.20.1