* remote.c (extended_remote_attach_1): Make local variable pid an int
authorJoel Brobecker <brobecker@gnat.com>
Fri, 7 Mar 2008 19:41:06 +0000 (19:41 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Fri, 7 Mar 2008 19:41:06 +0000 (19:41 +0000)
        instead of a pid_t.

gdb/ChangeLog
gdb/remote.c

index 291153e..7f546bd 100644 (file)
@@ -1,5 +1,10 @@
 2008-03-07  Joel Brobecker  <brobecker@adacore.com>
 
+       * remote.c (extended_remote_attach_1): Make local variable pid an int
+       instead of a pid_t.
+
+2008-03-07  Joel Brobecker  <brobecker@adacore.com>
+
        * solib-svr4.c (svr4_same_1): New function, originally extracted
        from svr4_same and expanded to handle the sparc64 case.
        (svr4_same): Move up and reimplement using svr4_same_1.
index 5f8c1c9..fac4d48 100644 (file)
@@ -2841,7 +2841,7 @@ static void
 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
 {
   struct remote_state *rs = get_remote_state ();
-  pid_t pid;
+  int pid;
   char *dummy;
 
   if (!args)