projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17a2f25
)
2003-06-30 Andrew Cagney <cagney@redhat.com>
author
Andrew Cagney
<cagney@redhat.com>
Mon, 30 Jun 2003 15:03:07 +0000
(15:03 +0000)
committer
Andrew 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
patch
|
blob
|
history
gdb/remote.c
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index 1986cee5ddcb1b3da8c6a27892e3c2a6c6a1d2ec..ffb75307a44f0ba2edd49e046c3b6e7e1f9c8516 100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-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
diff --git
a/gdb/remote.c
b/gdb/remote.c
index ffa8c609f5a58d3095faf29f5f8047a84c721136..9ccb3a5225ca826342feb4330ec844c431fb50f1 100644
(file)
--- a/
gdb/remote.c
+++ b/
gdb/remote.c
@@
-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 */