8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 23:23:04 +01:00

Fixed forgotten terminator - thanks to Dmitry and Adriano

This commit is contained in:
alexpeshkoff 2008-04-04 14:47:05 +00:00
parent ca764de86e
commit 97b10fd3ca
2 changed files with 2 additions and 2 deletions

View File

@ -3083,7 +3083,7 @@ int GDS_SHUTDOWN(unsigned int timeout)
if (!shutdown_semaphore.tryEnter(0, timeout))
{
Firebird::status_exception::raise(isc_shutdown_timeout);
Firebird::status_exception::raise(isc_shutdown_timeout, isc_arg_end);
}
}
else

View File

@ -6119,7 +6119,7 @@ int API_ROUTINE fb_shutdown(unsigned int timeout)
{
if (getMilliTime() > timeLimit)
{
Firebird::status_exception::raise(isc_shutdown_timeout);
Firebird::status_exception::raise(isc_shutdown_timeout, isc_arg_end);
}
}