File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -886,23 +886,23 @@ int colvarproxy_vmd::compute_volmap(int flags,
886886 int const new_flags = volmap_flag_gradients |
887887 volmap_flag_use_atom_field;
888888 compute_voldata<new_flags>(voldata, atom_begin, atom_end,
889- value, atom_field);
889+ value, atom_field, NULL );
890890 } else {
891891 int const new_flags = volmap_flag_gradients;
892892 compute_voldata<new_flags>(voldata, atom_begin, atom_end,
893- value, NULL );
893+ value, NULL , NULL );
894894 }
895895
896896 } else {
897897
898898 if (flags & volmap_flag_use_atom_field) {
899899 int const new_flags = volmap_flag_use_atom_field;
900900 compute_voldata<new_flags>(voldata, atom_begin, atom_end,
901- value, atom_field);
901+ value, atom_field, NULL );
902902 } else {
903903 int const new_flags = volmap_flag_null;
904904 compute_voldata<new_flags>(voldata, atom_begin, atom_end,
905- value, NULL );
905+ value, NULL , NULL );
906906 }
907907 }
908908 } else {
You can’t perform that action at this time.
0 commit comments