+2015-12-11 Andrew Burgess <andrew.burgess@embecosm.com>
+
+ * cli/cli-cmds.c (list_command): Use NULL instead of 0 when
+ checking pointers.
+
2015-12-11 Andrew Burgess <andrew.burgess@embecosm.com>
* source.c (lines_to_list): Make static.
cleanup = make_cleanup (null_cleanup, NULL);
/* Pull in the current default source line if necessary. */
- if (arg == 0 || arg[0] == '+' || arg[0] == '-')
+ if (arg == NULL || arg[0] == '+' || arg[0] == '-')
{
set_default_source_symtab_and_line ();
cursal = get_current_source_symtab_and_line ();
/* "l" or "l +" lists next ten lines. */
- if (arg == 0 || strcmp (arg, "+") == 0)
+ if (arg == NULL || strcmp (arg, "+") == 0)
{
print_source_lines (cursal.symtab, cursal.line,
cursal.line + get_lines_to_list (), 0);