Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit beaec283 authored by Andrei F's avatar Andrei F Committed by bonuzzz
Browse files

cpufreq: interactive: Fix compiler Werror in GCC 4.9

(cherry picked from commit 9dd6bef0a544d6aea8cc6ac9d6de6796cf04856a)
parent de7f2305
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1637,7 +1637,8 @@ static ssize_t show_cpu_util(struct cpufreq_interactive_tunables
			ret += sprintf(buf + ret, "OFF ");
	}

	ret += sprintf(buf + --ret, "\n");
	--ret;
	ret += sprintf(buf + ret, "\n");
	return ret;
}
#endif