mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-07 21:44:51 +00:00
FS-10801: [core] fix typo in core db interface
This commit is contained in:
parent
5febf075f7
commit
2abd5705dc
@ -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);
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user