Changeset b5b5d84 in mainline for uspace/app/df/df.c
- Timestamp:
- 2017-03-30T18:58:28Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 23a0368
- Parents:
- fe91f66
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/df/df.c
rfe91f66 rb5b5d84 40 40 #include <stdint.h> 41 41 #include <getopt.h> 42 #include <sys/statfs.h>43 42 #include <errno.h> 44 43 #include <adt/list.h> … … 124 123 print_header(); 125 124 list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) { 126 if ( statfs(mtab_ent->mp, &st) == 0) {125 if (vfs_statfs_path(mtab_ent->mp, &st) == 0) { 127 126 print_statfs(&st, mtab_ent->fs_name, mtab_ent->mp); 128 127 } else {
Note:
See TracChangeset
for help on using the changeset viewer.