From: Simon Glass Date: Wed, 25 Mar 2015 18:21:50 +0000 (-0600) Subject: sandbox: Fix comment for os_open() X-Git-Tag: v2015.07-rc1~259 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=887bd4164d7059df214a7683920ee853b8d34809;p=platform%2Fkernel%2Fu-boot.git sandbox: Fix comment for os_open() This has the wrong #define in the function comment. Fix it. Signed-off-by: Simon Glass Reviewed-by: Marek Vasut --- diff --git a/include/os.h b/include/os.h index e3645e0..a758f09 100644 --- a/include/os.h +++ b/include/os.h @@ -64,7 +64,7 @@ off_t os_lseek(int fd, off_t offset, int whence); * Access to the OS open() system call * * \param pathname Pathname of file to open - * \param flags Flags, like O_RDONLY, O_RDWR + * \param flags Flags, like OS_O_RDONLY, OS_O_RDWR * \return file descriptor, or -1 on error */ int os_open(const char *pathname, int flags);