Changeset 563686b in mainline
- Timestamp:
 - 2011-06-20T19:00:06Z (14 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 4372b49
 - Parents:
 - b85c19a
 - File:
 - 
      
- 1 edited
 
- 
          
  uspace/srv/fs/fat/fat_ops.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/srv/fs/fat/fat_ops.c
rb85c19a r563686b 1205 1205 1206 1206 fat_directory_t di; 1207 fat_directory_open(nodep, &di); 1208 di.pos = pos; 1207 rc = fat_directory_open(nodep, &di); 1208 if (rc != EOK) goto err; 1209 rc = fat_directory_seek(&di, pos); 1210 if (rc != EOK) { 1211 (void) fat_directory_close(&di); 1212 goto err; 1213 } 1209 1214 1210 1215 rc = fat_directory_read(&di, name, &d);  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  