X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=df%2Foutput.c;h=2950fff26e1c9a2d47297ba91af70c1b652cebd0;hp=52ce06313d399a7aa6f8ed89bfb6a20e53faea6a;hb=9b102aae65449a8d321e8cf44a3993af558291db;hpb=18374b5b7d3154e0b8b8a07e3590f6eee762b58e;ds=sidebyside diff --git a/df/output.c b/df/output.c index 52ce063..2950fff 100644 --- a/df/output.c +++ b/df/output.c @@ -1,5 +1,5 @@ /* virt-df - * Copyright (C) 2010 Red Hat Inc. + * Copyright (C) 2010-2011 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -45,7 +46,6 @@ void print_title (void) { const char *cols[6]; - size_t i; cols[0] = _("VirtualMachine"); cols[1] = _("Filesystem"); @@ -157,7 +157,7 @@ print_stat (const char *name, const char *uuid_param, /* Use 'ceil' on the percentage in order to emulate what df itself does. */ snprintf (buf[3], MAX_LEN, "%3.0f%%", ceil (percent)); else - snprintf (buf[3], MAX_LEN, "%.1f", percent); + snprintf (buf[3], MAX_LEN, "%.1f", (double) percent); cols[3] = buf[3]; #undef MAX_LEN