diff options
| author | Fuwn <[email protected]> | 2022-02-05 17:41:19 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-02-05 17:41:19 -0800 |
| commit | 1f13f04fa5b68da70cce61f0a39e819cffb302fa (patch) | |
| tree | 76594768a7318f9809fe38c843357b1e9c9d1cbe | |
| parent | feat(soyuz): countdown when unable to locate lunar (diff) | |
| download | soyuz-1f13f04fa5b68da70cce61f0a39e819cffb302fa.tar.xz soyuz-1f13f04fa5b68da70cce61f0a39e819cffb302fa.zip | |
fix(soyuz): actually output pid
| -rw-r--r-- | soyuz/soyuz.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soyuz/soyuz.cc b/soyuz/soyuz.cc index e7cad1e..abfd56d 100644 --- a/soyuz/soyuz.cc +++ b/soyuz/soyuz.cc @@ -84,7 +84,7 @@ int WINAPI WinMain(HINSTANCE instance, HINSTANCE, LPSTR, int show) { soyuz::exit(1); } - soyuz::log(fmt::format("located lunar client: pid {}", GetLastError())); + soyuz::log(fmt::format("located lunar client: pid {}", pid)); // GetLastError() soyuz::log("hooked lunar client"); soyuz::log("you may now close this window"); while (!stop.stop_requested()) { |