forked from mirrors/linphone-iphone
proxy_config_tester.c: fix compilation
This commit is contained in:
parent
6b134f5a33
commit
4d547292db
1 changed files with 2 additions and 3 deletions
|
|
@ -19,9 +19,8 @@
|
|||
#include "liblinphone_tester.h"
|
||||
|
||||
const char* phone_normalization(LinphoneProxyConfig *proxy, const char* in) {
|
||||
const size_t RESULTLENGTH = 255;
|
||||
static char result[RESULTLENGTH];
|
||||
linphone_proxy_config_normalize_number(proxy, in, result, RESULTLENGTH-1);
|
||||
static char result[255];
|
||||
linphone_proxy_config_normalize_number(proxy, in, result, 255-1);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue