ser-tcp.c:tcp_retry_limit: Change type to unsigned int.
authorPedro Alves <palves@redhat.com>
Thu, 7 Mar 2013 17:36:25 +0000 (17:36 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 7 Mar 2013 17:36:25 +0000 (17:36 +0000)
tcp_retry_limit is installed as variable of an unsigned command:

  add_setshow_uinteger_cmd ("connect-timeout", class_obscure,
                            &tcp_retry_limit, _("\

and I found no uses of the variable treating it as signed (like < 0
checks or some such).

2013-03-07  Pedro Alves  <palves@redhat.com>

* ser-tcp.c (tcp_retry_limit): Change type to unsigned int.

gdb/ChangeLog
gdb/ser-tcp.c

index b9aef0aea60f72468d300ba6d21db16fbc854419..6e81198d03f77a6f7895d70a1195645210ec45b7 100644 (file)
@@ -1,3 +1,7 @@
+2013-03-07  Pedro Alves  <palves@redhat.com>
+
+       * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
+
 2013-03-07  Pedro Alves  <palves@redhat.com>
 
        * remote.c (hex2bin, bin2hex): Move extern declarations to ...
index f9615d56b35d360d4d8bae7216f346780dedce5d..34c6af1f316eed60ceff3f9fd8d04153a33d6362 100644 (file)
@@ -72,7 +72,7 @@ static int tcp_auto_retry = 1;
 
 /* Timeout period for connections, in seconds.  */
 
-static int tcp_retry_limit = 15;
+static unsigned int tcp_retry_limit = 15;
 
 /* How many times per second to poll deprecated_ui_loop_hook.  */