diff options
| author | levlam <levlam@telegram.org> | 2023-04-24 23:08:25 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2023-04-24 23:08:25 +0300 |
| commit | 4041ecb535802ba1c55fcd11adf5d3ada41c2be7 (patch) | |
| tree | 3a439650a36e7a20079c65c1cf9e295c93a2d9ad | |
| parent | 65d4a7110c1ddcf1553fa9968f79752f992fe7a1 (diff) | |
Fix warning.
| -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 4782ed208..e01b356e5 100644 --- a/tdactor/test/actors_simple.cpp +++ b/tdactor/test/actors_simple.cpp @@ -292,7 +292,7 @@ class OpenClose final : public td::Actor { cnt_--; yield(); } else { - td::unlink(file_name); + td::unlink(file_name).ignore(); td::Scheduler::instance()->finish(); } } |
