Fix build on windows

This commit is contained in:
FrancescoBorzi
2019-01-15 08:46:07 +01:00
parent e5ad0165b3
commit 57f6a44082

View File

@@ -113,10 +113,10 @@ bool MySQLConnection::Open()
#endif
// Possible improvement for future: make ATTEMPTS and SECONDS configurable values
uint const ATTEMPTS = 180;
uint const SECONDS = 10;
uint32 const ATTEMPTS = 180;
uint32 const SECONDS = 10;
uint count = 0;
uint32 count = 0;
do {
m_Mysql = mysql_real_connect(
mysqlInit,