summaryrefslogtreecommitdiff
path: root/source/storage/csv_reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/storage/csv_reader.h')
-rw-r--r--source/storage/csv_reader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/storage/csv_reader.h b/source/storage/csv_reader.h
index 711499f..36e07a4 100644
--- a/source/storage/csv_reader.h
+++ b/source/storage/csv_reader.h
@@ -23,8 +23,8 @@ struct csv_table
23read_only global_variable 23read_only global_variable
24csv_row nil_csv_row = 24csv_row nil_csv_row =
25{ 25{
26 .fields = {NULL, 0}, 26 .fields = &nil_string,
27 .count = 0, 27 .count = 0,
28}; 28};
29 29
30 30
@@ -32,8 +32,8 @@ csv_row nil_csv_row =
32read_only global_variable 32read_only global_variable
33csv_table nil_csv_table = 33csv_table nil_csv_table =
34{ 34{
35 .string8 = {NULL, 0}, 35 .headers = &nil_string,
36 .csv_row = &nil_csv_row, 36 .rows = &nil_csv_row,
37 .col_count = 0, 37 .col_count = 0,
38 .row_count = 0, 38 .row_count = 0,
39}; 39};