Changeset dd2cfa7 in mainline for uspace/srv/vfs/vfs_ops.c


Ignore:
Timestamp:
2009-08-02T22:11:28Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
19490ce
Parents:
fa5526d
Message:

Even more warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ops.c

    rfa5526d rdd2cfa7  
    307307
    308308        /* Check the offered options size. */
    309         if (size < 0 || size > MAX_MNTOPTS_LEN) {
     309        if (size > MAX_MNTOPTS_LEN) {
    310310                ipc_answer_0(callid, EINVAL);
    311311                ipc_answer_0(rid, EINVAL);
     
    448448        int mode = IPC_GET_ARG3(*request);
    449449        size_t len;
     450
     451        /* Ignore mode for now. */
     452        (void) mode;
    450453       
    451454        /*
     
    10531056        }
    10541057        path[len] = '\0';
     1058
     1059        /* Ignore mode for now. */
     1060        (void) mode;
    10551061       
    10561062        fibril_rwlock_write_lock(&namespace_rwlock);
Note: See TracChangeset for help on using the changeset viewer.