2003-06-30 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Mon, 30 Jun 2003 15:03:07 +0000 (15:03 +0000)
committerAndrew Cagney <cagney@redhat.com>
Mon, 30 Jun 2003 15:03:07 +0000 (15:03 +0000)
* remote.c (remote_async_wait): Fix -Wformat problem.

gdb/ChangeLog
gdb/remote.c

index 1986cee5ddcb1b3da8c6a27892e3c2a6c6a1d2ec..ffb75307a44f0ba2edd49e046c3b6e7e1f9c8516 100644 (file)
@@ -1,3 +1,7 @@
+2003-06-30  Andrew Cagney  <cagney@redhat.com>
+
+       * remote.c (remote_async_wait): Fix -Wformat problem.
+
 2003-06-29  Andrew Cagney  <cagney@redhat.com>
 
        * remote.c (remote_wait): Call error, and not warning, when the
index ffa8c609f5a58d3095faf29f5f8047a84c721136..9ccb3a5225ca826342feb4330ec844c431fb50f1 100644 (file)
@@ -3287,7 +3287,8 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
                  }
 
                if (*p++ != ';')
-                 error ("Remote register badly formatted: %s\nhere:", buf, p);
+                 error ("Remote register badly formatted: %s\nhere: %s",
+                        buf, p);
              }
          }
          /* fall through */