changeset 1829:7858ca9e2cfe

* src/fatfs.c: fixed typos in TRACE statements
author asl
date Thu, 11 Nov 2004 19:33:29 +0000
parents f58d2945ab83
children dbb183b8d931
files packages/fs/fat/current/ChangeLog packages/fs/fat/current/src/fatfs.c
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/packages/fs/fat/current/ChangeLog
+++ b/packages/fs/fat/current/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-11  David Brennan  <eCos@brennanhome.com>
+
+	* src/fatfs.c: fixed typos in TRACE statements
+
 2004-10-23  David Brennan  <eCos@brennanhome.com>
 
 	* tests/fileio1.c: fixed check for return value for attribute
--- a/packages/fs/fat/current/src/fatfs.c
+++ b/packages/fs/fat/current/src/fatfs.c
@@ -1035,7 +1035,7 @@ fatfs_set_attrib(cyg_mtab_entry        *
     fatfs_dirsearch_t  ds;
     int                err;
 
-    CYG_TRACE4(TFS, "chmod mte=%p dir=%p name='%s' buf=%x", 
+    CYG_TRACE4(TFS, "set_attrib mte=%p dir=%p name='%s' buf=%x", 
                     mte, dir, name, new_attrib);
 
     // Verify new_mode is valid
@@ -1069,8 +1069,8 @@ fatfs_get_attrib(cyg_mtab_entry  *mte,
     fatfs_dirsearch_t  ds;
     int                err;
 
-    CYG_TRACE4(TFS, "chmod mte=%p dir=%p name='%s' buf=%x", 
-                    mte, dir, name, new_attrib);
+    CYG_TRACE4(TFS, "get_attrib mte=%p dir=%p name='%s' buf=%x", 
+                    mte, dir, name, file_attrib);
 
     init_dirsearch(&ds, disk, (fatfs_node_t *) dir, name);