Changeset 57b4f46 in mainline for uspace/lib/libc/generic/vfs/vfs.c


Ignore:
Timestamp:
2008-08-06T18:09:09Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ade06b4
Parents:
30b3ddb
Message:

cstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/vfs/vfs.c

    r30b3ddb r57b4f46  
    106106static int device_get_handle(char *name, dev_handle_t *handle)
    107107{
    108         int phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, DEVMAP_CLIENT, 0);
     108        int phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, DEVMAP_CLIENT,
     109            0);
    109110        if (phone < 0)
    110111                return phone;
     
    224225        free(pa);
    225226
    226         if (rc != EOK) return (int) rc;
     227        if (rc != EOK)
     228            return (int) rc;
    227229        return (int) IPC_GET_ARG1(answer);
    228230}
Note: See TracChangeset for help on using the changeset viewer.