More type issues/warnings

This commit is contained in:
TingPing
2015-02-21 21:01:14 -05:00
parent c36d4859d7
commit 7e7e87600e
2 changed files with 5 additions and 5 deletions

View File

@@ -37,7 +37,7 @@ int xs_parse_df(gint64 *out_total, gint64 *out_free)
long long int avail, total;
/* Filesystem 1024-blocks Used Available Capacity Mounted-on */
if (sscanf (buffer, "%*s %lld %*lld %lld %*s %*s", &total, &avail) == 2)
if (sscanf (buffer, "%*s %lld %*s %lld %*s %*s", &total, &avail) == 2)
{
*out_total += total;
*out_free += avail;