From 22af416c535ef6baf92d9116a0bfe7e97f6add20 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 12 Jan 2020 14:47:15 -0500 Subject: [PATCH] correct output to be consistent with other code in LAMMPS --- src/USER-MISC/fix_npt_cauchy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/USER-MISC/fix_npt_cauchy.cpp b/src/USER-MISC/fix_npt_cauchy.cpp index 41d76f0bfc..1b0deb5ae3 100644 --- a/src/USER-MISC/fix_npt_cauchy.cpp +++ b/src/USER-MISC/fix_npt_cauchy.cpp @@ -2468,7 +2468,7 @@ void FixNPTCauchy::CauchyStat_init() { if (comm->me == 0) { if (screen) { - fprintf(screen,"Using the Cauchystat fix with alpha=%f\n",alpha); + fprintf(screen,"Using fix npt/cauchy with alpha=%f\n",alpha); if (restartPK==1) { fprintf(screen," (this is a continuation run)\n"); } else { @@ -2476,7 +2476,7 @@ void FixNPTCauchy::CauchyStat_init() } } if (logfile) { - fprintf(logfile,"Using the Cauchystat with alpha=%f\n",alpha); + fprintf(logfile,"Using fix npt/cauchy with alpha=%f\n",alpha); if (restartPK==1) { fprintf(logfile," this is a continuation run\n"); } else {