internal: fix -Wsign-compare and -Wunused-variable warnings
This commit is contained in:
parent
ac3edec14b
commit
79791c9ed4
2 changed files with 2 additions and 3 deletions
|
|
@ -1309,9 +1309,9 @@ void CKeybindManager::moveCursorToCorner(std::string arg) {
|
|||
|
||||
void CKeybindManager::moveCursor(std::string args) {
|
||||
std::string x_str, y_str;
|
||||
int x, y, i;
|
||||
int x, y;
|
||||
|
||||
i = args.find_first_of(' ');
|
||||
size_t i = args.find_first_of(' ');
|
||||
if (i == std::string::npos) {
|
||||
Debug::log(ERR, "moveCursor, takes 2 arguments.");
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue