Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
swalrus1 committed Oct 21, 2024
1 parent e3eb772 commit 9ab761d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/library/conclusion/generic/status.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class TConclusionStatusImpl {
public:
void Validate(const TString& processInfo = Default<TString>()) const {
if (processInfo) {
Y_ABORT_UNLESS(Ok(), "error=%s, processInfo=%s", GetErrorMessage(), processInfo);
Y_ABORT_UNLESS(Ok(), "error=%s, processInfo=%s", GetErrorMessage().c_str(), processInfo.c_str());
} else {
Y_ABORT_UNLESS(Ok(), "error=%s", GetErrorMessage());
Y_ABORT_UNLESS(Ok(), "error=%s", GetErrorMessage().c_str());
}
}

Expand Down

0 comments on commit 9ab761d

Please sign in to comment.