Unverified Commit 9297211b authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

fix style issue

parent dd11fb39
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -228,8 +228,7 @@ void Error::warning(const std::string &file, int line, const std::string &str, i

void Error::message(const std::string &file, int line, const std::string &str, int logflag)
{
  std::string mesg = fmt::format("{} ({}:{})\n",
                                 str,truncpath(file),line);
  std::string mesg = fmt::format("{} ({}:{})\n",str,truncpath(file),line);

  if (screen) fputs(mesg.c_str(),screen);
  if (logflag && logfile) fputs(mesg.c_str(),logfile);