wdvi

network DVI viewer
Log | Files | Refs

commit cce01b90f4741231f7ff9eb5a29240314fc7f63b
parent 5ca6d387b94d628cef055e05b32c98532a9407a3
Author: Kyle Milz <milz@macbook.0x30.net>
Date:   Tue, 18 Aug 2020 11:50:15 -0700

Silence compiler warning

Add const qualifier to function parameter that is passed arguments that
are const.

Diffstat:
Mfilefind.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/filefind.c b/filefind.c @@ -2081,7 +2081,7 @@ static void filltree(pos, treepp, atom, slashslash) unsigned pos; struct treerec **treepp; - struct atomrec *atom; + _Xconst struct atomrec *atom; Boolean slashslash; { DIR *f;