diff options
author | Jean-François Roche <jfroche@affinitic.be> | 2022-10-28 12:19:37 +0200 |
---|---|---|
committer | Jean-François Roche <jfroche@affinitic.be> | 2022-10-28 12:19:37 +0200 |
commit | cd86eeb693342c79b01ff38ca723088dc1e42291 (patch) | |
tree | fac4d4ba4ac0631b3a0b578dd9f1e865354e77b3 /src/nix/main.cc | |
parent | b154070ab08ccaac673b07fa10138d107859e19e (diff) |
Move savedArgv into libmain
`savedArgv` is not accessible by plugins when defined in main binary.
Moving it into one of the nix lib fix the problem.
Diffstat (limited to 'src/nix/main.cc')
-rw-r--r-- | src/nix/main.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index d78312944..956730276 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -53,7 +53,6 @@ static bool haveInternet() } std::string programPath; -char * * savedArgv; struct HelpRequested { }; |