Skip to content

Commit

Permalink
EXODUS: Clean up some function name/doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed May 28, 2024
1 parent 3cdd25f commit 7b9969d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/seacas/libraries/exodus/src/ex_get_field_metadata.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ int ex_get_basis(int exoid, ex_basis **pbasis, int *num_basis)

if (status != NC_NOERR) {
char errmsg[MAX_ERR_LENGTH];
snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to read field Basis %s metadata",
snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to read Basis %s metadata",
basis[which].name);
ex_err_fn(exoid, __func__, errmsg, status);
EX_FUNC_LEAVE(EX_FATAL);
Expand Down Expand Up @@ -557,7 +557,7 @@ int ex_get_quadrature(int exoid, ex_quadrature **pquad, int *num_quad)

if (status != NC_NOERR) {
char errmsg[MAX_ERR_LENGTH];
snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to read field Quadrature %s metadata",
snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to read Quadrature %s metadata",
quad[which].name);
ex_err_fn(exoid, __func__, errmsg, status);
EX_FUNC_LEAVE(EX_FATAL);
Expand Down

0 comments on commit 7b9969d

Please sign in to comment.