Skip to content

Commit

Permalink
audio_recorder_app: Don't error when opening file for write
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnor committed May 31, 2020
1 parent 5bc23a3 commit d9ca386
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ AUDIO_RECORDER_ErrorTypdef AUDIO_RECORDER_SelectFile(char* file, uint8_t mode)
Error_Handler();
}
}
else {
ret = AUDIO_RECORDER_ERROR_NONE;
}
}
else
{
Expand Down

0 comments on commit d9ca386

Please sign in to comment.