Skip to content
Snippets Groups Projects
Commit 05c60cfe authored by lhausamm's avatar lhausamm Committed by Loic Hausammann
Browse files

Remove useless parameter in snapshot

parent 75b019e6
No related branches found
No related tags found
1 merge request!502Logger
...@@ -114,8 +114,6 @@ void write_index_single(struct engine* e, const char* baseName, ...@@ -114,8 +114,6 @@ void write_index_single(struct engine* e, const char* baseName,
/* Write the relevant information */ /* Write the relevant information */
io_write_attribute(h_grp, "PeriodicBoundariesOn", INT, &periodic, 1); io_write_attribute(h_grp, "PeriodicBoundariesOn", INT, &periodic, 1);
int index = 1;
io_write_attribute(h_grp, "IsIndexFile", INT, &index, 1);
/* Close runtime parameters */ /* Close runtime parameters */
H5Gclose(h_grp); H5Gclose(h_grp);
......
...@@ -686,8 +686,6 @@ void write_output_single(struct engine* e, const char* baseName, ...@@ -686,8 +686,6 @@ void write_output_single(struct engine* e, const char* baseName,
/* Write the relevant information */ /* Write the relevant information */
io_write_attribute(h_grp, "PeriodicBoundariesOn", INT, &periodic, 1); io_write_attribute(h_grp, "PeriodicBoundariesOn", INT, &periodic, 1);
int index = 0;
io_write_attribute(h_grp, "IsIndexFile", INT, &index, 1);
/* Close runtime parameters */ /* Close runtime parameters */
H5Gclose(h_grp); H5Gclose(h_grp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment