Remove an extraneous argument to fprintf that -Wformat noticed.

Reviewed by:	des
This commit is contained in:
Ian Dowse 2001-11-10 18:39:54 +00:00
parent 33ad961d11
commit 650b9e0ed5
1 changed files with 1 additions and 1 deletions

View File

@ -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)