[OB] avoid compiler warnings in remote-m32r-sdi.c

Message ID 001a114385dcaeef49052c9b9193@google.com
State New, archived
Headers

Commit Message

Doug Evans Feb. 25, 2016, 5:32 p.m. UTC
  Hi.

fyi, I committed this patch.

2016-02-25  Doug Evans  <dje@google.com>

	* remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
	compiler warning.
	(recv_long_data): Ditto.

    return val;
@@ -279,7 +279,7 @@ recv_char_data (void)
  static unsigned long
  recv_long_data (void)
  {
-  unsigned long val;
+  unsigned long val = 0; /* -Wall */

    recv_data (&val, 4);
    return ntohl (val);
  

Patch

diff --git a/gdb/remote-m32r-sdi.c b/gdb/remote-m32r-sdi.c
index c1bd858..2d3a1ad 100644
--- a/gdb/remote-m32r-sdi.c
+++ b/gdb/remote-m32r-sdi.c
@@ -270,7 +270,7 @@  send_three_arg_cmd (unsigned char cmd, unsigned long  
arg1, unsigned long arg2,
  static unsigned char
  recv_char_data (void)
  {
-  unsigned char val;
+  unsigned char val = 0; /* -Wall */

    recv_data (&val, 1);