diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 10:17:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 10:17:08 +0000 |
commit | 7d219aab70e6951ab82c27c202cac05016696723 (patch) | |
tree | 4c0679bfa391f71aee9b51505a5d3dc8f60a0cf7 /miscutils/rx.c | |
parent | 8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 (diff) |
build system overhaul
Diffstat (limited to 'miscutils/rx.c')
-rw-r--r-- | miscutils/rx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/miscutils/rx.c b/miscutils/rx.c index 52a76bfd9..00951b711 100644 --- a/miscutils/rx.c +++ b/miscutils/rx.c @@ -266,7 +266,7 @@ int rx_main(int argc, char **argv) filefd = xopen3(fn, O_RDWR|O_CREAT|O_TRUNC, 0666); if (tcgetattr(ttyfd, &tty) < 0) - bb_perror_msg_and_die("%s: tcgetattr failed", argv[0]); + bb_perror_msg_and_die("tcgetattr"); orig_tty = tty; @@ -284,8 +284,7 @@ int rx_main(int argc, char **argv) tcsetattr(ttyfd, TCSAFLUSH, &orig_tty); if (n < 0) - bb_error_msg_and_die("\n%s: receive failed:\n %s", - argv[0], error_buf); + bb_error_msg_and_die("\nreceive failed:\n %s", error_buf); bb_fflush_stdout_and_exit(EXIT_SUCCESS); } |