diff options
| author | Fuwn <[email protected]> | 2022-02-05 17:41:19 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-02-05 17:41:19 +0000 |
| commit | e03ea84dd75f81be7fd4384571086b51d0d83168 (patch) | |
| tree | 76594768a7318f9809fe38c843357b1e9c9d1cbe | |
| parent | feat(soyuz): countdown when unable to locate lunar (diff) | |
| download | soyuz-e03ea84dd75f81be7fd4384571086b51d0d83168.tar.xz soyuz-e03ea84dd75f81be7fd4384571086b51d0d83168.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()) { |