Skip to content

Commit

Permalink
EXODUS: Fix suffix handling in name building
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Oct 11, 2023
1 parent 1d8df99 commit 448dc01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/seacas/libraries/exodus/src/ex_field_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const char *ex_component_field_name(ex_field *field, int component[EX_MAX_FIELD_
field_name[fnl] = field->component_separator[i];
field_name[fnl + 1] = '\0';
}
strlcat(field_name, suffices[0], EX_MAX_NAME);
strlcat(field_name, suffices[i], EX_MAX_NAME);
}
return field_name;
}
Expand Down

0 comments on commit 448dc01

Please sign in to comment.