Skip to content

Commit

Permalink
Merge pull request ornladios#1580 from pnorbert/germasch_bpls_warnings
Browse files Browse the repository at this point in the history
Germasch bpls warnings
  • Loading branch information
Chuck Atkins committed Jun 30, 2019
2 parents ceb1ddf + 4688447 commit 5e4fc37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/utils/bpls/bpls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1530,12 +1530,12 @@ int readVar(core::Engine *fp, core::IO *io, core::Variable<T> *variable)
auto shape = variable->Shape(absstep);
if (verbose > 2)
{
printf(" starting step=%" PRIu64 " absolute step=%" PRIu64
printf(" starting step=%" PRIu64 " absolute step=%zu"
", dims={",
stepStart, absstep);
for (auto dim : shape)
{
printf("%" PRIu64 " ", dim);
printf("%zu", dim);
}
printf("}\n");
}
Expand Down

0 comments on commit 5e4fc37

Please sign in to comment.