From c53b5743df36ecf6917806a770e9f7ba820184ba Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 17 Apr 2003 17:15:36 +0000 Subject: [PATCH] WS --- ext/sqlite/sqlite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index c7ebf8b35e..bb3bc69a2e 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -354,7 +354,7 @@ PHP_FUNCTION(sqlite_fetch_array) /* now populate the result */ for (j = 0; j < res->ncolumns; j++) { if (mode & PHPSQLITE_NUM) { - if (res->table[i +j] == NULL) { + if (res->table[i + j] == NULL) { add_index_null(return_value, j); } else { add_index_string(return_value, j, res->table[i + j], 1); -- 2.50.1