diff --git a/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp b/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp index f3e0e4eceae9e64016c949876d76ce2053d6694f..b5eafe37dd2fb7008696fd02b07475843c14509d 100644 --- a/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp +++ b/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp @@ -3,7 +3,7 @@ * * Copyright (c) 1991-2000, University of Groningen, The Netherlands. * Copyright (c) 2001-2004, The GROMACS development team. - * Copyright (c) 2011,2012,2013,2014,2015,2016, by the GROMACS development team, led by + * Copyright (c) 2011,2012,2013,2014,2015,2016,2017, by the GROMACS development team, led by * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl, * and including many others, as listed in the AUTHORS file in the * top-level source directory and at http://www.gromacs.org. @@ -526,7 +526,7 @@ static void increase_nstlist(FILE *fp, t_commrec *cr, gmx_warning(!bBox ? box_err : dd_err); if (fp != NULL) { - fprintf(fp, "\n%s\n", bBox ? box_err : dd_err); + fprintf(fp, "\n%s\n", !bBox ? box_err : dd_err); } ir->nstlist = nstlist_orig; } diff --git a/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp.preplumed b/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp.preplumed index 560b923ba600d4304b2eea72a1a5d76b7a1f6bfa..ad3998103aca3abc52a8e81e6b52e352924f8446 100644 --- a/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp.preplumed +++ b/patches/gromacs-2016.5.diff/src/programs/mdrun/runner.cpp.preplumed @@ -3,7 +3,7 @@ * * Copyright (c) 1991-2000, University of Groningen, The Netherlands. * Copyright (c) 2001-2004, The GROMACS development team. - * Copyright (c) 2011,2012,2013,2014,2015,2016, by the GROMACS development team, led by + * Copyright (c) 2011,2012,2013,2014,2015,2016,2017, by the GROMACS development team, led by * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl, * and including many others, as listed in the AUTHORS file in the * top-level source directory and at http://www.gromacs.org. @@ -520,7 +520,7 @@ static void increase_nstlist(FILE *fp, t_commrec *cr, gmx_warning(!bBox ? box_err : dd_err); if (fp != NULL) { - fprintf(fp, "\n%s\n", bBox ? box_err : dd_err); + fprintf(fp, "\n%s\n", !bBox ? box_err : dd_err); } ir->nstlist = nstlist_orig; }