Skip to content

Commit 5a6650c

Browse files
giacomofiorinHanatoK
authored andcommitted
Fix merge error
1 parent 027aa57 commit 5a6650c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vmd/src/colvarproxy_vmd.C

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)