From 74a1be3402cdf41e683eb2ad6e6967a9a09269fd Mon Sep 17 00:00:00 2001 From: kris Date: Mon, 10 Jul 2000 09:14:15 +0000 Subject: Don't call err() with no format string. --- usr.bin/lam/lam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/lam') diff --git a/usr.bin/lam/lam.c b/usr.bin/lam/lam.c index 2770810..e65df36 100644 --- a/usr.bin/lam/lam.c +++ b/usr.bin/lam/lam.c @@ -118,7 +118,7 @@ getargs(av) if (*p == '-') ip->fp = stdin; else if ((ip->fp = fopen(p, "r")) == NULL) { - err(1, p); + err(1, "%s", p); } ip->pad = P; if (!ip->sepstring) -- cgit v1.1