commit d6cbda1db0821f73747d8a92ce2db1a6442ee349 parent 9da4a8d0ddeb64ceabbbc736c2706954d2d606b7 Author: Nihal Jere <nihal@nihaljere.xyz> Date: Fri, 1 Apr 2022 22:11:12 -0500 make copyfd parameters immutable Diffstat:
M | util.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util.c b/util.c @@ -22,7 +22,7 @@ warn(const char *const error) } void -copyfd(int out, int in) +copyfd(const int out, const int in) { char buf[BUFSIZ];