stardis

Perform coupled heat transfer calculations
git clone git://git.meso-star.fr/stardis.git
Log | Files | Refs | README | LICENSE

commit 3a9d8a42cff88a3ba7876e9ced389ca89c587de1
parent 32101678e91136440f5103a5c7413a55aa7c44ed
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 12 Sep 2023 10:17:12 +0200

Fix a log message

Diffstat:
Msrc/stardis-args.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/stardis-args.c b/src/stardis-args.c @@ -751,9 +751,10 @@ parse_args if(args->mode == UNDEF_MODE) { print_multiple_modes(buf, sizeof(buf), EXCLUSIVE_MODES | USE_STDOUT_MODES, 0); - logger_print(args->logger, LOG_WARNING, - "Nothing to do.\nOne of the following options should be used: %s\n", - buf); + logger_print(args->logger, LOG_ERROR, + "Nothing to do.\n"); + logger_print(args->logger, LOG_ERROR, + "One of the following options should be used: %s\n", buf); res = RES_BAD_ARG; goto error; }