diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-05-25 15:05:39 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-05-25 15:05:39 +0200 |
commit | 2f8a34cddcdd738afebde38e83b2315d3e305152 (patch) | |
tree | df26b5c36191a8d2743e07df7f7855ab567d364c /src/nix | |
parent | 09e55010f9c7d0e60d7c97d1881cc696df3644ae (diff) |
Fix warning
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/profile.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix/profile.cc b/src/nix/profile.cc index 1aae347df..3814e7d5a 100644 --- a/src/nix/profile.cc +++ b/src/nix/profile.cc @@ -263,7 +263,8 @@ builtPathsPerInstallable( struct CmdProfileInstall : InstallablesCommand, MixDefaultProfile { - std::optional<int> priority; + std::optional<int64_t> priority; + CmdProfileInstall() { addFlag({ .longName = "priority", |