Changeset 45f244b in mainline for uspace/srv/fs/fat/fat_ops.c


Ignore:
Timestamp:
2008-04-15T03:15:43Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9a5f0cb
Parents:
80e8482
Message:

libfs destroy operation should rather return an error code instead of a truth
value.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_ops.c

    r80e8482 r45f244b  
    312312}
    313313
    314 static bool fat_destroy(void *node)
    315 {
    316         return false;   /* not supported at the moment */
     314static int fat_destroy(void *node)
     315{
     316        return ENOTSUP; /* not supported at the moment */
    317317}
    318318
Note: See TracChangeset for help on using the changeset viewer.