binutils-gdb/gdb/cli
Andrew Burgess b03e6ad9cd gdb/cli: Remove casts of NULL during assignment.
In the following code:

    struct symbol *wsym = (struct symbol *) NULL;

the cast of NULL is redundant, it adds noise, and is just one more thing
to change if the type of wsym ever changes.  There are a relatively
small number of places in gdb where the above code pattern is used.
Usually the cast is removed like this:

    struct symbol *wsym = NULL;

This commit updates all the places within the gdb/cli directory where we
cast NULL during assignment, removing the cast.

gdb/ChangeLog:

	* cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
2015-09-04 16:50:20 +01:00
..
cli-cmds.c Replace some xmalloc-family functions with XNEW-family ones 2015-08-26 17:18:12 -04:00
cli-cmds.h
cli-decode.c gdb/cli: Remove casts of NULL during assignment. 2015-09-04 16:50:20 +01:00
cli-decode.h
cli-dump.c
cli-interp.c
cli-logging.c
cli-script.c Replace some xmalloc-family functions with XNEW-family ones 2015-08-26 17:18:12 -04:00
cli-script.h
cli-setshow.c Replace some xmalloc-family functions with XNEW-family ones 2015-08-26 17:18:12 -04:00
cli-setshow.h
cli-utils.c
cli-utils.h