Changeset 132ab5d1 in mainline for uspace/srv/fs/locfs/locfs_ops.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/srv/fs/locfs/locfs_ops.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/locfs/locfs_ops.c
r8bfb163 r132ab5d1 39 39 #include <stdbool.h> 40 40 #include <errno.h> 41 #include < malloc.h>41 #include <stdlib.h> 42 42 #include <str.h> 43 43 #include <libfs.h> … … 590 590 591 591 /* Wait for reply from the driver. */ 592 sysarg_t rc;592 int rc; 593 593 async_wait_for(msg, &rc); 594 594 … … 654 654 655 655 /* Wait for reply from the driver. */ 656 sysarg_t rc;656 int rc; 657 657 async_wait_for(msg, &rc); 658 658 … … 752 752 753 753 /* Wait for reply from the driver */ 754 sysarg_t rc;754 int rc; 755 755 async_wait_for(msg, &rc); 756 756
Note:
See TracChangeset
for help on using the changeset viewer.
