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:
Darryl L. Miles 2024-10-02 06:59:00 +01:00 committed by Tim Edwards
parent bf916d2647
commit 29bd23d40b
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ TxUseMore()
pagername++;
else
pagername = pagerpath;
execl(pagerpath, pagername, 0);
execl(pagerpath, pagername, NULL);
/* Something went very wrong if it gets here. */