-> fixed a print statement...newline was before !

This commit is contained in:
Konrad Hammel 2010-06-16 12:02:03 -04:00 committed by Moises Silva
parent 5c8bdedce0
commit 7e63c95608

View File

@ -506,7 +506,7 @@ int ft_to_sngss7_cfg(void)
SS7_DEBUG("ISUP interface already configured = %s\n", isup_interface->name);
} else {
if (ftmod_ss7_configure_isup_interface(x)) {
SS7_ERROR("Failed to configure ISUP interface = %s\n!", isup_interface->name);
SS7_ERROR("Failed to configure ISUP interface = %s\n", isup_interface->name);
return FTDM_FAIL;
} else {
SS7_INFO("Successfully configured ISUP interface = %s\n", isup_interface->name);