mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 19:03:07 +02:00
Revert "Context: Converted from strtol to std::stoi"
This reverts commit 8e214d1b14.
This commit is contained in:
parent
a3736f6363
commit
3169490219
1 changed files with 1 additions and 1 deletions
|
|
@ -611,7 +611,7 @@ void Context::getLimits (int& rows, int& lines)
|
|||
}
|
||||
else
|
||||
{
|
||||
rows = std::stoi (limit);
|
||||
rows = (int) strtol (limit.c_str (), NULL, 10);
|
||||
lines = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue