From af9321c4d84e7fb663b4dc9497434f97666ca334 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 11 Mar 2021 06:46:14 -0500 Subject: [PATCH] correct output --- src/utils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils.cpp b/src/utils.cpp index 4b9cc8a5f6..d34e5794ab 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -418,13 +418,13 @@ void utils::bounds(const char *file, int line, const std::string &str, error->all(file,line,fmt::format("Invalid range string: {}",str)); if (nlo < nmin) - error->all(file,line,fmt::format("Numeric index {} is out of bounds" + error->all(file,line,fmt::format("Numeric index {} is out of bounds " "({}-{})",nlo,nmin,nmax)); else if (nhi > nmax) - error->all(file,line,fmt::format("Numeric index {} is out of bounds" + error->all(file,line,fmt::format("Numeric index {} is out of bounds " "({}-{})",nhi,nmin,nmax)); else if (nlo > nhi) - error->all(file,line,fmt::format("Numeric index {} is out of bounds" + error->all(file,line,fmt::format("Numeric index {} is out of bounds " "({}-{})",nlo,nmin,nhi)); } }