diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/cli/cli-decode.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2ae453f..fdf2cd1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com> + * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer. + +2015-09-04 Andrew Burgess <andrew.burgess@embecosm.com> + * c-valprint.c (print_unpacked_pointer): Remove cast of NULL pointer. * dbxread.c (dbx_end_psymtab): Likewise. diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index f5b6fc4..cab2336 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -1219,7 +1219,7 @@ find_cmd (const char *command, int len, struct cmd_list_element *clist, { struct cmd_list_element *found, *c; - found = (struct cmd_list_element *) NULL; + found = NULL; *nfound = 0; for (c = clist; c; c = c->next) if (!strncmp (command, c->name, len) |