summaryrefslogtreecommitdiffstats
path: root/lib/libedit
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-04-09 18:52:09 +0000
committerpfg <pfg@FreeBSD.org>2016-04-09 18:52:09 +0000
commitb1f5ba96ab953fbf5cf52e9cca1214831cb6df42 (patch)
treee4e11615729265bf3eb1f4069da26e24e828c63c /lib/libedit
parent46483654c950233765ca6b3cf869fa842d80a0ab (diff)
downloadFreeBSD-src-b1f5ba96ab953fbf5cf52e9cca1214831cb6df42.zip
FreeBSD-src-b1f5ba96ab953fbf5cf52e9cca1214831cb6df42.tar.gz
libedit: replace 0 with NULL for pointers.
Found with devel/coccinelle. Reviewed by: Christos Zoulas
Diffstat (limited to 'lib/libedit')
-rw-r--r--lib/libedit/filecomplete.c4
-rw-r--r--lib/libedit/vi.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libedit/filecomplete.c b/lib/libedit/filecomplete.c
index 10d44e4..4527302 100644
--- a/lib/libedit/filecomplete.c
+++ b/lib/libedit/filecomplete.c
@@ -471,7 +471,7 @@ fn_complete(EditLine *el,
/* these can be used by function called in completion_matches() */
/* or (*attempted_completion_function)() */
- if (point != 0)
+ if (point != NULL)
*point = (int)(li->cursor - li->buffer);
if (end != NULL)
*end = (int)(li->lastchar - li->buffer);
@@ -483,7 +483,7 @@ fn_complete(EditLine *el,
&el->el_scratch),
cur_off - (int)len, cur_off);
} else
- matches = 0;
+ matches = NULL;
if (!attempted_completion_function ||
(over != NULL && !*over && !matches))
matches = completion_matches(
diff --git a/lib/libedit/vi.c b/lib/libedit/vi.c
index 0a426fd..6b0a775 100644
--- a/lib/libedit/vi.c
+++ b/lib/libedit/vi.c
@@ -1088,7 +1088,7 @@ vi_history_word(EditLine *el, Int c __attribute__((__unused__)))
if (wp == NULL)
return CC_ERROR;
- wep = wsp = 0;
+ wep = wsp = NULL;
do {
while (Isspace(*wp))
wp++;
@@ -1101,7 +1101,7 @@ vi_history_word(EditLine *el, Int c __attribute__((__unused__)))
} while ((!el->el_state.doingarg || --el->el_state.argument > 0)
&& *wp != 0);
- if (wsp == 0 || (el->el_state.doingarg && el->el_state.argument != 0))
+ if (wsp == NULL || (el->el_state.doingarg && el->el_state.argument != 0))
return CC_ERROR;
cv_undo(el);
OpenPOWER on IntegriCloud