]> granicus.if.org Git - php/commitdiff
WS
authorWez Furlong <wez@php.net>
Thu, 17 Apr 2003 17:15:36 +0000 (17:15 +0000)
committerWez Furlong <wez@php.net>
Thu, 17 Apr 2003 17:15:36 +0000 (17:15 +0000)
ext/sqlite/sqlite.c

index c7ebf8b35eee8398435a54add1ac44ebbf88e6a6..bb3bc69a2e61f4d1ff3a3f5e19b656a13ee3d80e 100644 (file)
@@ -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);