diff options
author | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-19 09:13:01 +0000 |
---|---|---|
committer | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-19 09:13:01 +0000 |
commit | e901c15d890dbbdce4c086963cb1513653fc46b5 (patch) | |
tree | a318d0f03aa076c74b576ea45dc543a5669e8e91 /miscutils/watchdog.c | |
parent | 40758c00616c3b2c85d83eb4afdeb04b1f65c9f1 (diff) | |
download | busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.tar.gz busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.tar.bz2 busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.zip |
Major coreutils update.
git-svn-id: svn://busybox.net/trunk/busybox@6751 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/watchdog.c')
-rw-r--r-- | miscutils/watchdog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index f0b0ebd0e..cfe19abc3 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c | |||
@@ -33,11 +33,11 @@ extern int watchdog_main(int argc, char **argv) | |||
33 | int fd; | 33 | int fd; |
34 | 34 | ||
35 | if (argc != 2) { | 35 | if (argc != 2) { |
36 | show_usage(); | 36 | bb_show_usage(); |
37 | } | 37 | } |
38 | 38 | ||
39 | if ((fd=open(argv[1], O_WRONLY)) == -1) { | 39 | if ((fd=open(argv[1], O_WRONLY)) == -1) { |
40 | perror_msg_and_die(argv[1]); | 40 | bb_perror_msg_and_die(argv[1]); |
41 | } | 41 | } |
42 | 42 | ||
43 | while (1) { | 43 | while (1) { |