Skip to content

Commit 9ab761d

Browse files
committed
fix compilation
1 parent e3eb772 commit 9ab761d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/library/conclusion/generic/status.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ class TConclusionStatusImpl {
3434
public:
3535
void Validate(const TString& processInfo = Default<TString>()) const {
3636
if (processInfo) {
37-
Y_ABORT_UNLESS(Ok(), "error=%s, processInfo=%s", GetErrorMessage(), processInfo);
37+
Y_ABORT_UNLESS(Ok(), "error=%s, processInfo=%s", GetErrorMessage().c_str(), processInfo.c_str());
3838
} else {
39-
Y_ABORT_UNLESS(Ok(), "error=%s", GetErrorMessage());
39+
Y_ABORT_UNLESS(Ok(), "error=%s", GetErrorMessage().c_str());
4040
}
4141
}
4242

0 commit comments

Comments
 (0)