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

kill warning

This commit is contained in:
robocop 2003-08-12 10:01:21 +00:00
parent 443fff8f44
commit e08864ed8e

View File

@ -1,6 +1,6 @@
/* /*
* PROGRAM: Windows NT registry installation program * PROGRAM: Windows NT registry installation program
* MODULE: install_reg.c * MODULE: install_reg.cpp
* DESCRIPTION: Registry installation program * DESCRIPTION: Registry installation program
* *
* The contents of this file are subject to the Interbase Public * The contents of this file are subject to the Interbase Public
@ -127,7 +127,7 @@ int CLIB_ROUTINE main( int argc, char **argv)
if (hkey_node != HKEY_LOCAL_MACHINE) if (hkey_node != HKEY_LOCAL_MACHINE)
RegCloseKey(hkey_node); RegCloseKey(hkey_node);
exit((ret == FB_SUCCESS) ? FINI_OK : FINI_ERROR); return (ret == FB_SUCCESS) ? FINI_OK : FINI_ERROR;
} }