summaryrefslogtreecommitdiffstats
path: root/util/system/context.cpp
diff options
context:
space:
mode:
authortobo <[email protected]>2022-02-10 16:47:27 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:47:27 +0300
commit55a7f90e4cd31e9481cace8ee5dfd682c27e810e (patch)
tree9814fbd1c3effac9b8377c5d604b367b14e2db55 /util/system/context.cpp
parent7fe839092527589b38f014d854c51565b3c1adfa (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/system/context.cpp')
-rw-r--r--util/system/context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/context.cpp b/util/system/context.cpp
index 4c67affa1fd..ad993090884 100644
--- a/util/system/context.cpp
+++ b/util/system/context.cpp
@@ -221,14 +221,14 @@ TContMachineContext::TContMachineContext()
: Fiber_(ConvertThreadToFiber(this))
, MainFiber_(true)
{
- Y_ENSURE(Fiber_, TStringBuf("fiber error"));
+ Y_ENSURE(Fiber_, TStringBuf("fiber error"));
}
TContMachineContext::TContMachineContext(const TContClosure& c)
: Fiber_(CreateFiber(c.Stack.size(), (LPFIBER_START_ROUTINE)ContextTrampoLine, (LPVOID)c.TrampoLine))
, MainFiber_(false)
{
- Y_ENSURE(Fiber_, TStringBuf("fiber error"));
+ Y_ENSURE(Fiber_, TStringBuf("fiber error"));
}
TContMachineContext::~TContMachineContext() {