From 70702af1370e44e32fb2c3c507e4759a187b4fe5 Mon Sep 17 00:00:00 2001 From: Leo C Date: Thu, 8 Sep 2016 19:15:27 +0200 Subject: Import fatfs R0.12b --- fatfs/doc/en/chmod.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fatfs/doc/en/chmod.html') diff --git a/fatfs/doc/en/chmod.html b/fatfs/doc/en/chmod.html index 6d53974..6a3ffd0 100644 --- a/fatfs/doc/en/chmod.html +++ b/fatfs/doc/en/chmod.html @@ -66,13 +66,13 @@ FRESULT f_chmod (

Description

-

The f_chmod() function changes the attribute of a file or sub-directory.

+

The f_chmod function changes the attribute of a file or sub-directory.

QuickInfo

-

Available when _FS_READONLY == 0 and _FS_MINIMIZE == 0.

+

Available when _FS_READONLY == 0 and _USE_CHMOD == 1.

@@ -80,7 +80,7 @@ FRESULT f_chmod (

Example

     /* Set read-only flag, clear archive flag and others are left unchanged. */
-    f_chmod("file.txt", AR_RDO, AR_RDO | AR_ARC);
+    f_chmod("file.txt", AM_RDO, AM_RDO | AM_ARC);
 
-- cgit v1.2.3