mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-23 10:21:12 +00:00
example/avrcp_browsing_client.c: fix warning
This commit is contained in:
parent
895065ea12
commit
3392790ebc
@ -142,11 +142,11 @@ static inline int next_index(int * index, int max_value){
|
||||
return (*index);
|
||||
}
|
||||
|
||||
static int next_folder_index(){
|
||||
static int next_folder_index(void){
|
||||
return next_index(&folder_index, AVRCP_BROWSING_MAX_FOLDERS);
|
||||
}
|
||||
|
||||
static int next_player_index(){
|
||||
static int next_player_index(void){
|
||||
return next_index(&player_index, AVRCP_BROWSING_MAX_PLAYERS);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user