Changeset c61d34b in mainline for uspace/lib/libc/generic/vfs/vfs.c
- Timestamp:
- 2008-10-09T19:26:58Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 756f475
- Parents:
- 06d6505
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/vfs/vfs.c
r06d6505 rc61d34b 117 117 } 118 118 119 static int device_get_handle(c har *name, dev_handle_t *handle)119 static int device_get_handle(const char *name, dev_handle_t *handle) 120 120 { 121 121 int phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, DEVMAP_CLIENT, … … 365 365 } 366 366 367 off_t newoffs;367 ipcarg_t newoffs; 368 368 rc = async_req_3_1(vfs_phone, VFS_SEEK, fildes, offset, whence, 369 (ipcarg_t)&newoffs);369 &newoffs); 370 370 371 371 async_serialize_end(); … … 375 375 return (off_t) -1; 376 376 377 return newoffs;377 return (off_t) newoffs; 378 378 } 379 379
Note:
See TracChangeset
for help on using the changeset viewer.