Changeset 20614d0 in mainline for uspace/srv/fs/fat/fat.c


Ignore:
Timestamp:
2007-11-03T14:59:41Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
828d215
Parents:
4d21cf8
Message:

Add ipc_answer_fast_[01] macros so that ipc_answer_fast() users don't have to
write zero arguments all the time.

File:
1 edited

Legend:

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

    r4d21cf8 r20614d0  
    9494                 * created by IPC_M_CONNECT_TO_ME.
    9595                 */
    96                 ipc_answer_fast(iid, EOK, 0, 0);
     96                ipc_answer_fast_0(iid, EOK);
    9797        }
    9898       
     
    105105                switch  (IPC_GET_METHOD(call)) {
    106106                default:
    107                         ipc_answer_fast(callid, ENOTSUP, 0, 0);
     107                        ipc_answer_fast_0(callid, ENOTSUP);
    108108                        break;
    109109                }
Note: See TracChangeset for help on using the changeset viewer.