FS-10801: [core] fix typo in core db interface

This commit is contained in:
Mike Jerris 2019-02-26 16:02:40 -07:00 committed by Andrey Volk
parent 5febf075f7
commit 2abd5705dc
2 changed files with 2 additions and 2 deletions

View File

@ -2668,7 +2668,7 @@ SWITCH_DECLARE(void) switch_cache_db_database_interface_flush_handles(switch_dat
/*! /*!
\brief Returns error if no suitable database interface found to serve core db dsn. \brief Returns error if no suitable database interface found to serve core db dsn.
*/ */
SWITCH_DECLARE(switch_status_t) switch_core_check_core_db_dsn(); SWITCH_DECLARE(switch_status_t) switch_core_check_core_db_dsn(void);
SWITCH_DECLARE(void) switch_core_set_signal_handlers(void); SWITCH_DECLARE(void) switch_core_set_signal_handlers(void);
SWITCH_DECLARE(uint32_t) switch_core_debug_level(void); SWITCH_DECLARE(uint32_t) switch_core_debug_level(void);

View File

@ -380,7 +380,7 @@ SWITCH_DECLARE(void) switch_cache_db_dismiss_db_handle(switch_cache_db_handle_t
#define MIN(a,b) (((a) < (b)) ? (a) : (b)) #define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif #endif
SWITCH_DECLARE(switch_status_t) switch_core_check_core_db_dsn() SWITCH_DECLARE(switch_status_t) switch_core_check_core_db_dsn(void)
{ {
switch_status_t status = SWITCH_STATUS_FALSE; switch_status_t status = SWITCH_STATUS_FALSE;
switch_database_interface_t *database_interface; switch_database_interface_t *database_interface;