Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 81fe3a0

Browse files
committedSep 25, 2023
Make internal name length match string length parsed from config file for audio devs
1 parent 3b6a105 commit 81fe3a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/audio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ int audio_open (struct audio_s *pa)
226226
#endif
227227
int chan;
228228
int a;
229-
char audio_in_name[30];
230-
char audio_out_name[30];
229+
char audio_in_name[80];
230+
char audio_out_name[80];
231231

232232

233233
save_audio_config_p = pa;

0 commit comments

Comments
 (0)
Please sign in to comment.