Skip to content

Commit

Permalink
[IA64] fix: warning: `ql_size' might be used uninitialized
Browse files Browse the repository at this point in the history
Oops.  Should have caught this before I checked it in.

Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Tony Luck committed Apr 25, 2005
1 parent 5f6602a commit c411cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-ia64/pgalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c411cb5

Please sign in to comment.