summaryrefslogtreecommitdiffstats
path: root/df/output.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't rely on implicit promotion of float to double in printf args.Richard W.M. Jones2011-11-241-1/+1
| | | | (cherry picked from commit 9b102aae65449a8d321e8cf44a3993af558291db)
* Update FSF address.Matthew Booth2011-11-091-1/+1
| | | | (cherry picked from commit 04ea1375c55aa67df4e7fc61dbb534111767f3b6)
* Include string.h and libintl.h, as needed.Jim Meyering2011-04-131-1/+2
| | | | | | | | | * df/df.c: As above. * df/main.c: As above. * df/output.c: As above. * fuse/guestmount.c: As above. * inspector/virt-inspector.c: As above. * rescue/virt-rescue.c: As above.
* Remove several unused local variables.Richard W.M. Jones2010-12-101-1/+0
| | | | (Revealed by compiling under Debian where this is a warning).
* df: Rewrite virt-df in C.Richard W.M. Jones2010-11-251-0/+242
I have diffed the output from the original virt-df with this new version, and they agree very closely. Some differences: - Old virt-df have a divide-by-zero error in cases where the number of used inodes was 0. New virt-df fixes this. - New virt-df uses gnulib human_readable library which displays numbers to 3 significant figures for -h output (old version used an ad hoc function).