diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/new-applet-HOWTO.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 7acc80bb2..1c2383f35 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt @@ -40,7 +40,7 @@ int mu_main(int argc, char **argv) int fd; char mu; - fd = bb_xopen("/dev/random", O_RDONLY); + fd = xopen("/dev/random", O_RDONLY); if ((n = safe_read(fd, &mu, 1)) < 1) bb_perror_msg_and_die("/dev/random"); |