aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorIan Dowse <iedowse@FreeBSD.org>2001-11-10 18:39:54 +0000
committerIan Dowse <iedowse@FreeBSD.org>2001-11-10 18:39:54 +0000
commit650b9e0ed57592d3192cbff12a78f5f50682ef4b (patch)
tree572fa04bb5966e858c6290a7237d83f6d87626e3 /usr.bin
parent33ad961d11cf77bce1c6bf27bc745359e79a613f (diff)
downloadsrc-650b9e0ed57592d3192cbff12a78f5f50682ef4b.tar.gz
src-650b9e0ed57592d3192cbff12a78f5f50682ef4b.zip
Remove an extraneous argument to fprintf that -Wformat noticed.
Reviewed by: des
Notes
Notes: svn path=/head/; revision=86242
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/fetch/fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c
index ddbf34e514d9..5b838692972e 100644
--- a/usr.bin/fetch/fetch.c
+++ b/usr.bin/fetch/fetch.c
@@ -215,7 +215,7 @@ query_auth(struct url *URL)
fprintf(stderr, "Authentication required for <%s://%s:%d/>!\n",
- URL->scheme, URL->host, URL->port, URL->doc);
+ URL->scheme, URL->host, URL->port);
fprintf(stderr, "Login: ");
if (fgets(URL->user, sizeof URL->user, stdin) == NULL)