update all indirect references to native strings
[nit.git] / lib / sqlite3 / sqlite3.nit
index ba45bc5..43af40d 100644 (file)
@@ -250,9 +250,9 @@ class StatementEntry
        do
                assert statement_closed: statement.is_open
 
-               var native_string = statement.native_statement.column_text(index)
-               if native_string.address_is_null then return ""
-               return native_string.to_s_with_copy
+               var c_string = statement.native_statement.column_text(index)
+               if c_string.address_is_null then return ""
+               return c_string.to_s_with_copy
        end
 
        # Get this entry as `Blob`