diff options
| author | levlam <levlam@telegram.org> | 2022-06-14 16:11:38 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2022-06-14 16:11:38 +0300 |
| commit | 782aa6a2ec3ed0ba0249510f9906e6f32a02364c (patch) | |
| tree | 179418f67ef94f896e20ea76b0052957d16e23f4 /tdactor | |
| parent | f12da0fed558c149e5306f998a5ffa904ce885af (diff) | |
Minor fixes.
Diffstat (limited to 'tdactor')
| -rw-r--r-- | tdactor/test/actors_simple.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdactor/test/actors_simple.cpp b/tdactor/test/actors_simple.cpp index 9551053c8..a76b80884 100644 --- a/tdactor/test/actors_simple.cpp +++ b/tdactor/test/actors_simple.cpp @@ -329,7 +329,7 @@ class MasterActor final : public MsgActor { public: void loop() final { alive_ = true; - slave = td::create_actor<Slave>("slave", static_cast<td::ActorId<MsgActor>>(actor_id(this))); + slave = td::create_actor<Slave>("Slave", static_cast<td::ActorId<MsgActor>>(actor_id(this))); stop(); } td::ActorOwn<Slave> slave; |
