Commit 0e1f6060 authored by Tony Luck's avatar Tony Luck

[IA64] fix warning unused variable `g'

4ac0068f forgot to delete
the declaration of this variable which is no longer used.
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent fb5f329d
...@@ -587,7 +587,7 @@ thread_matches (struct task_struct *thread, unsigned long addr) ...@@ -587,7 +587,7 @@ thread_matches (struct task_struct *thread, unsigned long addr)
static struct task_struct * static struct task_struct *
find_thread_for_addr (struct task_struct *child, unsigned long addr) find_thread_for_addr (struct task_struct *child, unsigned long addr)
{ {
struct task_struct *g, *p; struct task_struct *p;
struct mm_struct *mm; struct mm_struct *mm;
struct list_head *this, *next; struct list_head *this, *next;
int mm_users; int mm_users;
......
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