mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 06:43:03 +01:00
Fix the Win32 build by brute force for VC2008 (other compilers may complain).
This commit is contained in:
parent
26a1a79b05
commit
ab578df954
@ -572,7 +572,7 @@ static HANDLE parse_args(LPCSTR lpszArgs, USHORT* pserver_flag)
|
||||
{
|
||||
p++;
|
||||
*pp++ = '\0';
|
||||
connection_handle = (HANDLE) atoi64(buffer);
|
||||
connection_handle = (HANDLE) _atoi64(buffer);
|
||||
pp = buffer;
|
||||
}
|
||||
else
|
||||
@ -582,7 +582,7 @@ static HANDLE parse_args(LPCSTR lpszArgs, USHORT* pserver_flag)
|
||||
|
||||
if (connection_handle == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
connection_handle = (HANDLE) atoi64(buffer);
|
||||
connection_handle = (HANDLE) _atoi64(buffer);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user