8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 10:43:03 +01:00

Fix the Win32 build by brute force for VC2008 (other compilers may complain).

This commit is contained in:
robocop 2009-08-02 14:50:58 +00:00
parent 26a1a79b05
commit ab578df954

View File

@ -572,7 +572,7 @@ static HANDLE parse_args(LPCSTR lpszArgs, USHORT* pserver_flag)
{ {
p++; p++;
*pp++ = '\0'; *pp++ = '\0';
connection_handle = (HANDLE) atoi64(buffer); connection_handle = (HANDLE) _atoi64(buffer);
pp = buffer; pp = buffer;
} }
else else
@ -582,7 +582,7 @@ static HANDLE parse_args(LPCSTR lpszArgs, USHORT* pserver_flag)
if (connection_handle == INVALID_HANDLE_VALUE) if (connection_handle == INVALID_HANDLE_VALUE)
{ {
connection_handle = (HANDLE) atoi64(buffer); connection_handle = (HANDLE) _atoi64(buffer);
} }
else else
{ {