Browse Source

[IA64] fix warning unused variable `g'

4ac0068f44f192f2de95a7bb36df3e19767a45fb forgot to delete
the declaration of this variable which is no longer used.

Signed-off-by: Tony Luck <tony.luck@intel.com>
Tony Luck 20 years ago
parent
commit
0e1f606092
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/ia64/kernel/ptrace.c

+ 1 - 1
arch/ia64/kernel/ptrace.c

@@ -587,7 +587,7 @@ thread_matches (struct task_struct *thread, unsigned long addr)
 static struct task_struct *
 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 list_head *this, *next;
 	int mm_users;