From: Carsten Kutzner Date: Fri, 25 Feb 2011 18:37:58 +0000 (+0100) Subject: Corrected output of a warning message. X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=bd8a55506b507ac6289b42eabec9905fab7156f8;p=alexxy%2Fgromacs.git Corrected output of a warning message. --- diff --git a/src/tools/gmx_tune_pme.c b/src/tools/gmx_tune_pme.c index 379f7e2694..b775d170dc 100644 --- a/src/tools/gmx_tune_pme.c +++ b/src/tools/gmx_tune_pme.c @@ -1678,8 +1678,8 @@ static void check_input( } if ((npme_fixed > 0) && (5*npme_fixed < nnodes)) { - fprintf(stderr, "WARNING: Only %f percent of the nodes are assigned to do PME.\n", - (real)npme_fixed / (real)nnodes); + fprintf(stderr, "WARNING: Only %g percent of the nodes are assigned as PME-only nodes.\n", + 100.0*((real)npme_fixed / (real)nnodes)); } if (opt2parg_bSet("-min",npargs,pa) || opt2parg_bSet("-max",npargs,pa)) {