Changeset 8ad8e49 in mainline
- Timestamp:
- 2008-03-10T21:56:42Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f2ec8c8
- Parents:
- 07deef5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_lookup.c
r07deef5 r8ad8e49 83 83 return EINVAL; 84 84 85 u nsigned longindex = 0;85 uint64_t index = 0; 86 86 if (lflag & L_LINK) { 87 87 va_list ap; 88 88 89 89 va_start(ap, altroot); 90 index = va_arg(ap, u nsigned long);90 index = va_arg(ap, uint64_t); 91 91 va_end(ap); 92 92 } … … 180 180 result->triplet.fs_handle = (int) IPC_GET_ARG1(answer); 181 181 result->triplet.dev_handle = (int) IPC_GET_ARG2(answer); 182 result->triplet.index = ( int) IPC_GET_ARG3(answer);182 result->triplet.index = (uint64_t) IPC_GET_ARG3(answer); 183 183 result->size = (size_t) IPC_GET_ARG4(answer); 184 184 result->lnkcnt = (unsigned) IPC_GET_ARG5(answer);
Note:
See TracChangeset
for help on using the changeset viewer.