forked from mirrors/linphone-iphone
Fixing error of compilation on windows 10
This commit is contained in:
parent
2b407fabfa
commit
e00b30de86
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ const char* linphone_vcard_get_full_name(const LinphoneVcard *vCard) {
|
|||
void linphone_vcard_set_skip_validation(LinphoneVcard *vCard, bool_t skip) {
|
||||
if (!vCard || !vCard->belCard) return;
|
||||
|
||||
vCard->belCard->setSkipFieldValidation(skip);
|
||||
vCard->belCard->setSkipFieldValidation((skip == TRUE) ? true : false);
|
||||
}
|
||||
|
||||
bool_t linphone_vcard_get_skip_validation(const LinphoneVcard *vCard) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue