mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-01 21:02:39 +08:00
Fix compile warnning #4933
This commit is contained in:
parent
0a1c439535
commit
068b3b98ed
@ -153,7 +153,7 @@ ToolApp::loginAuth()
|
||||
std::cin >> credentials;
|
||||
|
||||
std::vector<String> parts = synergy::string::splitString(credentials, ':');
|
||||
int count = parts.size();
|
||||
size_t count = parts.size();
|
||||
|
||||
if (count == 2 ) {
|
||||
String email = parts[0];
|
||||
@ -196,7 +196,7 @@ ToolApp::notifyActivation()
|
||||
std::cin >> info;
|
||||
|
||||
std::vector<String> parts = synergy::string::splitString(info, ':');
|
||||
int count = parts.size();
|
||||
size_t count = parts.size();
|
||||
|
||||
if (count == 3 || count == 4) {
|
||||
String action = parts[0];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user