1
1

* man2hlp.c (main): Fix using 0 instead of NULL.

Этот коммит содержится в:
Pavel Roskin 2005-10-08 04:55:06 +00:00
родитель 528e392458
Коммит da6ee30252
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,7 @@
2005-10-08 Pavel Roskin <proski@gnu.org>
* man2hlp.c (main): Fix using 0 instead of NULL.
* widget.c (listbox_fwd): Eliminate forward inline declaration.
2005-10-04 Jindrich Novy <jnovy@redhat.com>

Просмотреть файл

@ -764,7 +764,7 @@ main (int argc, char **argv)
char *p = strchr (node, ']');
if (p) {
if (strncmp (node + 1, "[main]", 6) == 0) {
node = 0;
node = NULL;
} else {
if (!cnode) {
cnode = &nodes;