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

Oops.  Should have caught this before I checked it in.

Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
Tony Luck 2005-04-25 13:16:16 -07:00
parent 5f6602a101
commit c411cb5658
1 changed files with 1 additions and 1 deletions

View File

@ -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) {