Skip to content

Commit

Permalink
change pcmrecord exit code to no error
Browse files Browse the repository at this point in the history
  • Loading branch information
ka9q committed Apr 7, 2024
1 parent a72a47a commit ecb34c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcmrecord.c
Expand Up @@ -247,7 +247,7 @@ static void closedown(int a){
fprintf(stderr,"%s: caught signal %d: %s\n",App_path,a,strsignal(a));

cleanup();
exit(EX_SOFTWARE); // Will call cleanup()
exit(EX_OK); // Will call cleanup()
}

// Read from RTP network socket, assemble blocks of samples
Expand Down

0 comments on commit ecb34c9

Please sign in to comment.