mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-18 16:53:02 +00:00
fix: uniqstr are already pointers
* src/uniqstr.c (uniqstr_assert): Remove incorrect double indirection, and now useless cast.
This commit is contained in:
@@ -77,8 +77,8 @@ uniqstr_vsprintf (char const *format, ...)
|
|||||||
void
|
void
|
||||||
uniqstr_assert (char const *str)
|
uniqstr_assert (char const *str)
|
||||||
{
|
{
|
||||||
uniqstr *s = hash_lookup (uniqstrs_table, str);
|
uniqstr s = hash_lookup (uniqstrs_table, str);
|
||||||
if (!s || s != (uniqstr *)str)
|
if (!s || s != str)
|
||||||
{
|
{
|
||||||
error (0, 0,
|
error (0, 0,
|
||||||
"not a uniqstr: %s", quotearg (str));
|
"not a uniqstr: %s", quotearg (str));
|
||||||
|
|||||||
Reference in New Issue
Block a user