mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
13 lines
569 B
Diff
13 lines
569 B
Diff
diff --git a/src/Utils/Process.cpp b/src/Utils/Process.cpp
|
|
index 5688fb1..6cea8d8 100644
|
|
--- a/src/Utils/Process.cpp
|
|
+++ b/src/Utils/Process.cpp
|
|
@@ -392,7 +392,7 @@ namespace gamescope::Process
|
|
pid_t SpawnProcessInWatchdog( char **argv, bool bRespawn, std::function<void()> fnPreambleInChild )
|
|
{
|
|
std::vector<char *> args;
|
|
- args.push_back( (char *)"gamescopereaper" );
|
|
+ args.push_back( (char *)"@gamescopereaper@" );
|
|
if ( bRespawn )
|
|
args.push_back( (char *)"--respawn" );
|
|
args.push_back( (char *)"--" );
|