From 6f85dac5b81920e9463e8b2d24409c5b70a59691 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 1 Sep 2013 15:02:31 -0400 Subject: [PATCH] Build Warning - Eliminated a sign warning. --- src/Nibbler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Nibbler.cpp b/src/Nibbler.cpp index 83f1b6e89..421612eb1 100644 --- a/src/Nibbler.cpp +++ b/src/Nibbler.cpp @@ -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; }