Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make internal name length match string length parsed from config file…
… for audio devs
  • Loading branch information
ars-ka0s committed Sep 25, 2023
commit 81fe3a0643a85523f7e887960ada1d499796fe75
4 changes: 2 additions & 2 deletions src/audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ int audio_open (struct audio_s *pa)
#endif
int chan;
int a;
char audio_in_name[30];
char audio_out_name[30];
char audio_in_name[80];
char audio_out_name[80];


save_audio_config_p = pa;
Expand Down