From 7e7e87600e4a8e826e39ced94432582007a8ee0a Mon Sep 17 00:00:00 2001 From: TingPing Date: Sat, 21 Feb 2015 21:01:14 -0500 Subject: More type issues/warnings --- plugins/sysinfo/shared/df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/sysinfo/shared') diff --git a/plugins/sysinfo/shared/df.c b/plugins/sysinfo/shared/df.c index 2ef75689..ce0760a6 100644 --- a/plugins/sysinfo/shared/df.c +++ b/plugins/sysinfo/shared/df.c @@ -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; -- cgit 1.4.1