txOutput.c:408: warning: missing sentinel in function call
GCC false positive, seems pedantic over it being NULL not 0. GCC14 loud default warnings series [-Wformat=]
This commit is contained in:
parent
bf916d2647
commit
29bd23d40b
|
|
@ -405,7 +405,7 @@ TxUseMore()
|
||||||
pagername++;
|
pagername++;
|
||||||
else
|
else
|
||||||
pagername = pagerpath;
|
pagername = pagerpath;
|
||||||
execl(pagerpath, pagername, 0);
|
execl(pagerpath, pagername, NULL);
|
||||||
|
|
||||||
/* Something went very wrong if it gets here. */
|
/* Something went very wrong if it gets here. */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue