Commit c411cb56 authored by Tony Luck's avatar Tony Luck

[IA64] fix: warning: `ql_size' might be used uninitialized

Oops.  Should have caught this before I checked it in.
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 5f6602a1
......@@ -29,7 +29,7 @@ DECLARE_PER_CPU(long, __pgtable_quicklist_size);
static inline long pgtable_quicklist_total_size(void)
{
long ql_size;
long ql_size = 0;
int cpuid;
for_each_online_cpu(cpuid) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment