Skip to content

Commit

Permalink
Fix printf format
Browse files Browse the repository at this point in the history
  • Loading branch information
drroe committed Aug 23, 2023
1 parent 39fd47b commit 8803109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exec_Change.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ const
mprintf("\tUsing data from '%s' for %s.\n", ds->legend(), desc[typeIn]);
if (ds->Size() != (unsigned int)atomsToChange.Nselected()) {
mprinterr("Error: %i atoms to change %s of, but set '%s' has %zu elements.\n",
atomsToChange.Nselected(), desc[typeIn], ds->Size());
atomsToChange.Nselected(), desc[typeIn], ds->legend(), ds->Size());
return 1;
}
DataSet_1D const& dset = static_cast<DataSet_1D const&>( *ds );
Expand Down

0 comments on commit 8803109

Please sign in to comment.