projects
/
external
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03edbe3
)
* macrotab.c (macro_bcache_str): Remove cast.
author
Tom Tromey
<tromey@redhat.com>
Wed, 25 Jul 2012 15:32:09 +0000
(15:32 +0000)
committer
Tom Tromey
<tromey@redhat.com>
Wed, 25 Jul 2012 15:32:09 +0000
(15:32 +0000)
gdb/ChangeLog
patch
|
blob
|
history
gdb/macrotab.c
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index
97cc3ea
..
18b4f9e
100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-1,3
+1,7
@@
+2012-07-25 Tom Tromey <tromey@redhat.com>
+
+ * macrotab.c (macro_bcache_str): Remove cast.
+
2012-07-25 Hui Zhu <hui_zhu@mentor.com>
* linespec.c (linespec_lexer_lex_number): Update comments,
diff --git
a/gdb/macrotab.c
b/gdb/macrotab.c
index
e65e5dc
..
6154362
100644
(file)
--- a/
gdb/macrotab.c
+++ b/
gdb/macrotab.c
@@
-128,7
+128,7
@@
macro_bcache (struct macro_table *t, const void *addr, int len)
static const char *
macro_bcache_str (struct macro_table *t, const char *s)
{
- return
(char *)
macro_bcache (t, s, strlen (s) + 1);
+ return macro_bcache (t, s, strlen (s) + 1);
}