From fe7f76da5809f0e4d414b92dab36d73aad0195bc Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 28 Jun 2024 12:11:25 -0700 Subject: [PATCH] Update src/sundials/sundials_utils.h Co-authored-by: David Gardner --- src/sundials/sundials_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sundials/sundials_utils.h b/src/sundials/sundials_utils.h index 028759c1e1..9802e5347a 100644 --- a/src/sundials/sundials_utils.h +++ b/src/sundials/sundials_utils.h @@ -127,7 +127,7 @@ static inline void sunfprintf_long_array(FILE* fp, SUNOutputFormat fmt, if (fmt == SUN_OUTPUTFORMAT_TABLE) { - fprintf(fp, "%-*s = %ld\n", SUN_TABLE_WIDTH, name, value[0]); + fprintf(fp, "%-*s = %ld", SUN_TABLE_WIDTH, name, value[0]); for (size_t i = 1; i < count; i++) { fprintf(fp, ", %ld", value[i]); } fprintf(fp, "\n"); }