diff options
author | 2022-07-24 12:07:25 +0900 | |
---|---|---|
committer | 2022-08-05 00:37:46 +0900 | |
commit | d0b3d4456dd8700b9065545d745f3fbf28ff0c91 (patch) | |
tree | d907fbd912715f894816b881670953b2f2bc4fbb /lib/file-util.c | |
parent | 86f13970718ef5e0758ac4edfe7da2c354d19668 (diff) |
Fix function interface descriptions
The librefop use doxygen to create interface document.
Existing code has some description error in interface description.
This patch fix these error.
Bug-AGL: SPEC-4500
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Change-Id: I83a68fb708a6c850f01559ab3780d1e9c3fdd7d9
Diffstat (limited to 'lib/file-util.c')
-rw-r--r-- | lib/file-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/file-util.c b/lib/file-util.c index 652cfd3..880bcb4 100644 --- a/lib/file-util.c +++ b/lib/file-util.c @@ -12,7 +12,7 @@ /** * INTR safe read - * Interface spec is similar to read. + * Interface spec is similar to read system call. */ ssize_t safe_read(int fd, void *buf, size_t count) { @@ -43,7 +43,7 @@ ssize_t safe_read(int fd, void *buf, size_t count) /** * INTR safe write - * Interface spec is similar to read. + * Interface spec is similar to write system call. */ ssize_t safe_write(int fd, void *buf, size_t count) { |