mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Build Warning
- Eliminated a sign warning.
This commit is contained in:
parent
94dc0c1b2d
commit
6f85dac5b8
1 changed files with 2 additions and 2 deletions
|
@ -1080,9 +1080,9 @@ bool Nibbler::skipRx (const std::string& regex)
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool Nibbler::backN (const int quantity /*= 1*/)
|
||||
{
|
||||
if (_cursor >= quantity)
|
||||
if (_cursor >= (unsigned) quantity)
|
||||
{
|
||||
_cursor -= quantity;
|
||||
_cursor -= (unsigned) quantity;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue