mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 14:18:07 +00:00
It looks like c++ enum cannot be used as a mask
This commit is contained in:
parent
58c9d50970
commit
23d28dbb02
1 changed files with 1 additions and 1 deletions
|
|
@ -472,7 +472,7 @@ void linphone_core_set_log_file(FILE *file) {
|
|||
}
|
||||
|
||||
void linphone_core_set_log_level(OrtpLogLevel loglevel) {
|
||||
OrtpLogLevel mask = loglevel;
|
||||
unsigned int mask = loglevel;
|
||||
switch (loglevel) {
|
||||
case ORTP_TRACE:
|
||||
case ORTP_DEBUG:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue