Changes in uspace/srv/fs/devfs/devfs_ops.c [19f857a:4cac2d69] in mainline
- File:
-
- 1 edited
-
uspace/srv/fs/devfs/devfs_ops.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/devfs_ops.c
r19f857a r4cac2d69 37 37 38 38 #include <ipc/ipc.h> 39 #include <macros.h>40 39 #include <bool.h> 41 40 #include <errno.h> 42 41 #include <malloc.h> 43 #include <str .h>42 #include <string.h> 44 43 #include <libfs.h> 45 44 #include <fibril_synch.h> … … 338 337 } 339 338 340 static aoff64_t devfs_size_get(fs_node_t *fn)339 static size_t devfs_size_get(fs_node_t *fn) 341 340 { 342 341 return 0; … … 464 463 { 465 464 fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request); 466 aoff64_t pos = 467 (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request)); 465 off_t pos = (off_t) IPC_GET_ARG3(*request); 468 466 469 467 if (index == 0) { … … 599 597 { 600 598 fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request); 599 off_t pos = (off_t) IPC_GET_ARG3(*request); 600 601 601 if (index == 0) { 602 602 ipc_answer_0(rid, ENOTSUP);
Note:
See TracChangeset
for help on using the changeset viewer.
