forked from Imagelibrary/binutils-gdb
Replace use of magic number with named constant.
gdb/ChangeLog: * guile/scm-cmd.c (gdbscm_parse_command_name): Replace magic number with named constant. Fix style of pointer comparison. * python/py-cmd.c (gdbpy_parse_command_name): Ditto.
This commit is contained in:
@@ -531,7 +531,7 @@ gdbscm_parse_command_name (const char *name,
|
||||
|
||||
prefix_text2 = prefix_text;
|
||||
elt = lookup_cmd_1 (&prefix_text2, *start_list, NULL, 1);
|
||||
if (!elt || elt == (struct cmd_list_element *) -1)
|
||||
if (elt == NULL || elt == CMD_LIST_AMBIGUOUS)
|
||||
{
|
||||
msg = xstrprintf (_("could not find command prefix '%s'"), prefix_text);
|
||||
xfree (prefix_text);
|
||||
|
||||
Reference in New Issue
Block a user