mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Update nix-env.cc
missing comma
This commit is contained in:
parent
0312d30315
commit
12fe2249e1
1 changed files with 1 additions and 1 deletions
|
@ -1287,7 +1287,7 @@ static void opDeleteGenerations(Globals & globals, Strings opFlags, Strings opAr
|
||||||
} else if (opArgs.size() == 1 && opArgs.front().find('+') != string::npos) {
|
} else if (opArgs.size() == 1 && opArgs.front().find('+') != string::npos) {
|
||||||
if(opArgs.front().size() < 2)
|
if(opArgs.front().size() < 2)
|
||||||
throw Error(format("invalid number of generations ‘%1%’") % opArgs.front());
|
throw Error(format("invalid number of generations ‘%1%’") % opArgs.front());
|
||||||
string str_max = string(opArgs.front() 1, opArgs.front().size());
|
string str_max = string(opArgs.front(), 1, opArgs.front().size());
|
||||||
int max;
|
int max;
|
||||||
if (!string2Int(str_max, max) || max == 0)
|
if (!string2Int(str_max, max) || max == 0)
|
||||||
throw Error(format("invalid number of generations to keep ‘%1%’") % opArgs.front());
|
throw Error(format("invalid number of generations to keep ‘%1%’") % opArgs.front());
|
||||||
|
|
Loading…
Reference in a new issue