From 34f73fddfe4bab4f573fe18c3205b6677c5366ea Mon Sep 17 00:00:00 2001 From: Ed Date: Wed, 11 Sep 2019 11:59:59 +0100 Subject: [PATCH] Added a missing break statement in fz component --- src/compute_bond_local.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compute_bond_local.cpp b/src/compute_bond_local.cpp index c8caa88241..e14f188e62 100644 --- a/src/compute_bond_local.cpp +++ b/src/compute_bond_local.cpp @@ -405,6 +405,7 @@ int ComputeBondLocal::compute_bonds(int flag) break; case FZ: ptr[n] = dz*fbond; + break; case ENGVIB: ptr[n] = engvib; break;