* macrotab.c (macro_bcache_str): Remove cast.

This commit is contained in:
Tom Tromey 2012-07-25 15:32:09 +00:00
parent 03edbe3bfb
commit d560eebdef
2 changed files with 5 additions and 1 deletions

View file

@ -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);
}