Changes in uspace/app/df/df.c [c24b0dcb:b2dca036] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/df/df.c
rc24b0dcb rb2dca036 35 35 */ 36 36 37 #include <cap a.h>37 #include <cap.h> 38 38 #include <stdbool.h> 39 39 #include <stdio.h> … … 124 124 static errno_t size_to_human_readable(uint64_t nblocks, size_t block_size, char **rptr) 125 125 { 126 cap a_spec_t capa;127 128 cap a_from_blocks(nblocks, block_size, &capa);129 cap a_simplify(&capa);130 return cap a_format(&capa, rptr);126 cap_spec_t cap; 127 128 cap_from_blocks(nblocks, block_size, &cap); 129 cap_simplify(&cap); 130 return cap_format(&cap, rptr); 131 131 } 132 132
Note:
See TracChangeset
for help on using the changeset viewer.