aboutsummaryrefslogtreecommitdiff
path: root/src/Csv.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Csv.hpp')
-rw-r--r--src/Csv.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Csv.hpp b/src/Csv.hpp
index 09cd053..400f35b 100644
--- a/src/Csv.hpp
+++ b/src/Csv.hpp
@@ -73,8 +73,8 @@ namespace io{
std::memset(file_name, 0, max_file_name_length+1);
}
- void set_file_name(const char*file_name){
- std::strncpy(this->file_name, file_name, max_file_name_length);
+ void set_file_name(const char *file_name){
+ std::strncpy(this->file_name, file_name, max_file_name_length+1);
this->file_name[max_file_name_length] = '\0';
}
@@ -1096,7 +1096,7 @@ namespace io{
private:
LineReader in;
- char*(row[column_count]);
+ char* row[column_count];
std::string column_names[column_count];
std::vector<int>col_order;