Skip to content

Commit

Permalink
Fix warning due to incorrect delegate function prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
kode54 committed Sep 25, 2021
1 parent 02de18d commit ceb2e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Audio/AudioPlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@
@protocol AudioPlayerDelegate
- (void)audioPlayer:(AudioPlayer *)player willEndStream:(id)userInfo; //You must use setNextStream in this method
- (void)audioPlayer:(AudioPlayer *)player didBeginStream:(id)userInfo;
- (void)audioPlayer:(AudioPlayer *)player didChangeStatus:(id)status;
- (void)audioPlayer:(AudioPlayer *)player didChangeStatus:(id)status userInfo:(id)userInfo;
@end

0 comments on commit ceb2e3f

Please sign in to comment.