Changeset 9dc6083 in mainline for uspace/app/df/df.c
- Timestamp:
- 2013-07-06T15:53:01Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11baebb
- Parents:
- 66366470
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/df/df.c
r66366470 r9dc6083 38 38 #include <stdlib.h> 39 39 #include <unistd.h> 40 #include <s tats.h>40 #include <sys/statfs.h> 41 41 #include <errno.h> 42 42 #include <adt/list.h> … … 59 59 mtab_ent_t *mtab_ent = list_get_instance(cur, mtab_ent_t, 60 60 link); 61 if (statfs( mtab_ent->mp, &st) < 0)61 if (statfs(/*mtab_ent->mp*/ "/data", &st) < 0) 62 62 return 1; 63 63 64 64 printf("%13s %15lld %9lld %9lld %3ld%% %s\n", 65 65 mtab_ent->fs_name,
Note:
See TracChangeset
for help on using the changeset viewer.