mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
fix bad cast to unsigned int
This commit is contained in:
parent
7097f17143
commit
9cf85cdbcf
1 changed files with 1 additions and 1 deletions
|
|
@ -1601,7 +1601,7 @@ static void misc_config_read(LinphoneCore *lc) {
|
|||
LpConfig *config=lc->config;
|
||||
const char *uuid;
|
||||
|
||||
lc->max_call_logs=(unsigned int)lp_config_get_int(config,"misc","history_max_size",LINPHONE_MAX_CALL_HISTORY_SIZE);
|
||||
lc->max_call_logs=lp_config_get_int(config,"misc","history_max_size",LINPHONE_MAX_CALL_HISTORY_SIZE);
|
||||
lc->max_calls=lp_config_get_int(config,"misc","max_calls",NB_MAX_CALLS);
|
||||
|
||||
uuid=lp_config_get_string(config,"misc","uuid",NULL);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue