Skip to content

Commit

Permalink
Merge pull request #885
Browse files Browse the repository at this point in the history
lib: correct formatting for a debug message
  • Loading branch information
arogge committed Jul 12, 2021
2 parents 570d9cb + 3a7905b commit f43a1a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/lib/bsys.cc
Expand Up @@ -627,7 +627,7 @@ void WriteStateFile(const char* dir, const char* progname, int port)
} catch (const std::system_error& e) {
BErrNo be;
Dmsg3(100, "Could not seek filepointer. ERR=%s - %s\n",
sizeof(StateFileHeader), be.bstrerror(), e.code().message().c_str());
be.bstrerror(), e.code().message().c_str());
return;
} catch (const std::exception& e) {
Dmsg0(100, "Could not seek filepointer. Some error occurred: %s\n",
Expand Down

0 comments on commit f43a1a3

Please sign in to comment.