Print decoded frames to stdout, not stderr
This commit is contained in:
parent
a423467037
commit
3074af45c1
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ int main(int argc, char **argv) {
|
|||
goto error_ax25_frame_decode;
|
||||
}
|
||||
|
||||
if (frame_fprint(stderr, &frame, data, len) < 0) {
|
||||
if (frame_fprint(stdout, &frame, data, len) < 0) {
|
||||
perror("Unable to print frame");
|
||||
|
||||
goto error_frame_fprint;
|
||||
|
|
Loading…
Add table
Reference in a new issue