diff options
author | Max Kellermann <max@duempel.org> | 2009-11-08 22:07:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-08 22:07:14 +0100 |
commit | b043ade456818a414c726c8525bb8ec63658edc8 (patch) | |
tree | 3b5bf9a3274c7887afc1da8637c538e11f927b2e /src/fd_util.h | |
parent | 217b494cc56f9f4d7b7c2bb3a88811846e765d3d (diff) | |
download | mpd-b043ade456818a414c726c8525bb8ec63658edc8.tar.gz mpd-b043ade456818a414c726c8525bb8ec63658edc8.tar.xz mpd-b043ade456818a414c726c8525bb8ec63658edc8.zip |
fd_util: fixed typo in API documentation
Diffstat (limited to '')
-rw-r--r-- | src/fd_util.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fd_util.h b/src/fd_util.h index 145941d3c..2dfc151f2 100644 --- a/src/fd_util.h +++ b/src/fd_util.h @@ -33,42 +33,42 @@ struct sockaddr; /** - * Wrapper for open(), which sets to CLOEXEC flag (atomically if + * Wrapper for open(), which sets the CLOEXEC flag (atomically if * supported by the OS). */ int open_cloexec(const char *path_fs, int flags); /** - * Wrapper for creat(), which sets to CLOEXEC flag (atomically if + * Wrapper for creat(), which sets the CLOEXEC flag (atomically if * supported by the OS). */ int creat_cloexec(const char *path_fs, int mode); /** - * Wrapper for pipe(), which sets to CLOEXEC flag (atomically if + * Wrapper for pipe(), which sets the CLOEXEC flag (atomically if * supported by the OS). */ int pipe_cloexec(int fd[2]); /** - * Wrapper for socket(), which sets to CLOEXEC flag (atomically if + * Wrapper for socket(), which sets the CLOEXEC flag (atomically if * supported by the OS). */ int socket_cloexec(int domain, int type, int protocol); /** - * Wrapper for accept(), which sets to CLOEXEC flag (atomically if + * Wrapper for accept(), which sets the CLOEXEC flag (atomically if * supported by the OS). */ int accept_cloexec(int fd, struct sockaddr *address, size_t *address_length_r); /** - * Wrapper for inotify_init(), which sets to CLOEXEC flag (atomically + * Wrapper for inotify_init(), which sets the CLOEXEC flag (atomically * if supported by the OS). */ int |