Skip to content
Snippets Groups Projects
Commit 3f352dae authored by Kurt A. O'Hearn's avatar Kurt A. O'Hearn
Browse files

sPuReMD: fix uninitialized variable compilation warning.

parent 0b9f87dd
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,7 @@ void Hydrogen_Bonds( reax_system *system, control_params *control,
i = pbond_ij->nbr;
if ( i != k
&& system->reax_param.hbp[type_i][type_j][type_k].is_valid == TRUE )
&& system->reax_param.hbp[system->atoms[i].type][type_j][type_k].is_valid == TRUE )
{
bo_ij = &pbond_ij->bo_data;
type_i = system->atoms[i].type;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment