mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-16 00:41:41 +00:00
try to compensate for silly compiler issue
This commit is contained in:
parent
c321e67ab5
commit
088cee65f9
@ -1613,10 +1613,12 @@ void launch_sofia_profile_thread(sofia_profile_t *profile)
|
|||||||
|
|
||||||
static void logger(void *logarg, char const *fmt, va_list ap)
|
static void logger(void *logarg, char const *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
if (!fmt)
|
/* gcc 4.4 gets mad at us for testing if (ap) so let's try to work around it....*/
|
||||||
return;
|
void *ap_ptr = (void *) (intptr_t) ap;
|
||||||
|
|
||||||
if (ap) {
|
if (!fmt) return;
|
||||||
|
|
||||||
|
if (ap_ptr) {
|
||||||
switch_log_vprintf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, fmt, ap);
|
switch_log_vprintf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, fmt, ap);
|
||||||
} else {
|
} else {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, "%s", fmt);
|
switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, "%s", fmt);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user