From d0b3d4456dd8700b9065545d745f3fbf28ff0c91 Mon Sep 17 00:00:00 2001
From: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Date: Sun, 24 Jul 2022 12:07:25 +0900
Subject: 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
---
 lib/file-util.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'lib/file-util.c')

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)
 {
-- 
cgit