Delete unused variable in lynx_attach.
authorJoel Brobecker <brobecker@gnat.com>
Mon, 17 Dec 2012 11:03:00 +0000 (11:03 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 17 Dec 2012 11:03:00 +0000 (11:03 +0000)
gdb/gdbserver/ChangeLog:

        * lynx-low.c (lynx_attach): Delete variable new_process.

gdb/gdbserver/ChangeLog
gdb/gdbserver/lynx-low.c

index e9ae379..e841c78 100644 (file)
@@ -1,5 +1,9 @@
 2012-12-17  Joel Brobecker  <brobecker@adacore.com>
 
+       * lynx-low.c (lynx_attach): Delete variable new_process.
+
+2012-12-17  Joel Brobecker  <brobecker@adacore.com>
+
        * lynx-low.c (lynx_create_inferior): Delete variable
        new_process.
 
index cbdc085..29f5e62 100644 (file)
@@ -329,14 +329,13 @@ lynx_create_inferior (char *program, char **allargs)
 static int
 lynx_attach (unsigned long pid)
 {
-  struct process_info *new_process;
   ptid_t ptid = lynx_ptid_build (pid, 0);
 
   if (lynx_ptrace (PTRACE_ATTACH, ptid, 0, 0, 0) != 0)
     error ("Cannot attach to process %lu: %s (%d)\n", pid,
           strerror (errno), errno);
 
-  new_process = add_process (pid, 1);
+  add_process (pid, 1);
   add_thread (ptid, NULL);
 
   return 0;