mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
forgot a warning
This commit is contained in:
parent
ef5863d169
commit
c08fce967f
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ int passwordCallback(char* password, int maxPasswordSize, int rwFlag, void* u) {
|
|||
// just return a hardcoded pwd for now
|
||||
static const char* pwd = "pwd";
|
||||
strcpy(password, pwd);
|
||||
return strlen(pwd);
|
||||
return static_cast<int>(strlen(pwd));
|
||||
}
|
||||
|
||||
// BEGIN copied code - this will be removed/changed at some point soon
|
||||
|
|
Loading…
Reference in a new issue